Hey!
I've been having some issues with a pair of waveform charts that I'm using as part of a front panel that'll act as an HMI for an application that I'm developing.
As of right now, I have 8 different waveforms built as an array that is connected to a waveform chart (with t0 being the current timestamp of the program and dt being a 1000 ms constant) in one of the tabs:
And in another one of the tabs I have a similar arrangement for a chart, except that I have 5 waveforms in it.
The thing is, with this arrangement, when there is a change of tabs, the history data of the waveform chart resets and I know that if I don't use waveforms and just bundle the data straight up into the chart, I could see all the plots separately and the data doesn't reset. But the thing is that with that approach, the X-Axis doesn't show the current date/time and I need to have that in the X-Axis.
I also know that with an XY Graph, things could be done in a simpler way, but I can't use a Graph because I'm working with properties of the plots of the chart in another part of the code.
Do you guys know about any way that I could still use the arrangement from above and prevent the data reset that I'm experiencing?