The Block Trend operation draws/clears an individual or all channels on the desired block trend graph.
refreshBlockTrend(BLOCKTREND,[],$Enums.DrawMode.ClearAndDraw);
1
2 3
(Example)
refreshBlockTrend($GraphicObject.BlockTrend1,[$Enums.Channels.All],$Enums.DrawMode.ClearAndDraw);
If multiple triggers cause the overlap of the execution timing of [Block Trend] operations on the same Block Trend object, the latter [Block Trend] operations are skipped.
If multiple triggers cause the overlap of the execution timing of [Block Trend] operations on different Block Trend objects, or if the execution timing of [Block Trend] operations on the same Block Trend object do not overlap, the latter [Block Trend] operations are executed.
This operation allows you to clear the plotted graph and plots again.
[Clear And Draw]
'$Enums.DrawMode.ClearAndDraw'
This operation allows you to clear the plotted graph.
[Clear]
'$Enums.DrawMode.Clear'
This operation allows you to plot the graph. A graph is always added.
[Draw]
'$Enums.DrawMode.Draw'