IntensitySeriesBaseRefreshRenderingData Method |
LightningChart .NET Help
Rebuilds rendering data. Expert's method for allowing multi-threaded application to pre-build rendering data before rendering stage.
Rendering stage must always be synchronized to main thread, but this call can be called parallel for every series of this type.
Namespace:
Arction.Wpf.Charting.SeriesXY
Assembly:
Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic void RefreshRenderingData(
double xAxisMin,
double xAxisMax,
int sweepPageIndex,
float graphSegmentTop,
float graphSegmentHeight
)
Public Sub RefreshRenderingData (
xAxisMin As Double,
xAxisMax As Double,
sweepPageIndex As Integer,
graphSegmentTop As Single,
graphSegmentHeight As Single
)
public:
void RefreshRenderingData(
double xAxisMin,
double xAxisMax,
int sweepPageIndex,
float graphSegmentTop,
float graphSegmentHeight
)
Parameters
- xAxisMin
- Type: SystemDouble
X-axis minimum. - xAxisMax
- Type: SystemDouble
X-axis maximum. - sweepPageIndex
- Type: SystemInt32
X-axis sweeping page index (set 0 if sweeping is not used). - graphSegmentTop
- Type: SystemSingle
Graph segment top. - graphSegmentHeight
- Type: SystemSingle
Graph segment height.
See Also