Data Culling and Batch Plotting |
Top Previous Next |
To minimize system resources, FreeFlyer will thin plot data after a predefined number of data points are plotted. Data culling is described below and can be configured to reflect the user's needs. FreeFlyer can also plot data in batches to display data smoothly and perform consolidated updates.Data CullingTo reduce memory usage, plot data is thinned after a predefined number of data points are plotted. The default number of maximum plot data points is 500; this can be configured through your User Preferences or in FreeForm Script using the syntax below.
The maximum number of points applies to the PlotWindow object, not the individual PlotSeries object. For example, if the user has three PlotScatterSeries on a single PlotWindow object, once the three combined series have 1000 points total, plot data will be culled. Since the user can add or remove points, data culling could happen at different points in the data for the various series.
Disable Data CullingThe user can disable data culling for a PlotSeries by setting the EnableDataCulling property to false; this will ignore the maximum number of points set in the PlotWindow object.
Points To UpdateTo improve execution time, plots are only updated after a predefined number of data points have been collected into a buffer. The default buffer size is 25 points; this can be configured through your User Preferences or in FreeForm Script using the syntax below.
The PointsToUpdate property applies to both adding and removing data points. The user can also use batch plotting, described below, to update a specified set of data points.
Batch PlottingFreeFlyer lets the user perform batch updates to DataTableWindow, GridWindow, PlotWindow, ViewWindow, and WatchWindow Objects. Batch updates allow the user to perform consolidated updates to a Window Object at a single instance in time. In the example below, data is added to the PlotScatterSeries Objects inside of a While Loop. Then, the two data series objects are added to the PlotWindow and several properties of the plot are set. The BeginBatchUpdate and EndBatchUpdate methods bound the desired updates.
Note: A separate EndBatchUpdate statement is required for every BeginBatchUpdate statement.
See Also
|