Not really. Charts are generally given data a point at a time (or a few points at a time). You often do not have the full data set of each trace to replot (you would need a graph to do this replot). However, you can still do what you want using the
Plot.Visible property. You will need to wire the same data to both charts. Using a property node for the chart, first select the
Active Plot, then set the
Plot->Visible to TRUE or FALSE to show or hide the plot.
This method uses more memory than the previous one, since you have two charts with identical data. There are more complex methods using a chart and a graph if you run into memory issues.