Using 8.1.43.
I have a gateway dataset query tag that runs every 30 seconds. It queries all my data but I only want to show one plot at a time (since the ranges vary differently I can't plot it all together).
I have two other tags that get from this tag on a EventDrive (though I also tried Fixed Rate) basis. They do this with the view()
function, like view("SELECT dt, Tick",{[~]SpyInternals})
, into a new tag, lets call "Tick".
I bound the series property of a TimeSeries chart to the Tick tag. When I first load up the view, it is right - but it doesn't update at all. I will wait a few minutes and I won't see an update - but if I refresh the whole page it will update to the most recent few rows of data.
What am I doing wrong here to get the live data to plot?