The goal is to display 1-3second duration traces in real time, like a scope, at sample rates of 10-20khz. Thus, the chart indicator seems perfect except for the speed issue when feeding it one sample at a time using the property node - again, the property node approach is the only way I can see to avoid explicit references to graphs. This latter point applies whether the data is handled immediately in the fast loop, or externally in another user interface loop. For the moment, I am trying a hack using a waveform graph, in which the fast data loop outputs arrays of data points in chunks smaller than the total trace length, which are then successively concatenated and sent to a graph (via its property node of course)at each iteration. When t
he chunks are short enough, the UI result looks like a scope chart.