IntensitySeriesBaseSetValuesData Method (Double, IntensityGridValuesDataOrder) |
LightningChart .NET Help
Sets values. Doesn't update the Data array contents itself.
Very handy to make the chart render fast when the data is being changed frequently,
especially with IntensityGridSeries' PixelRendering mode enabled.
Namespace:
Arction.WinForms.Charting.SeriesXY
Assembly:
Arction.WinForms.Charting.LightningChart (in Arction.WinForms.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool SetValuesData(
double[][] data,
IntensityGridValuesDataOrder order
)
Public Function SetValuesData (
data As Double()(),
order As IntensityGridValuesDataOrder
) As Boolean
public:
bool SetValuesData(
array<array<double>^>^ data,
IntensityGridValuesDataOrder order
)
Parameters
- data
- Type: SystemDouble
Data. The alignment must be M x N, all rows must be of equal length. - order
- Type: Arction.WinForms.ChartingIntensityGridValuesDataOrder
Jagged array order dimensions order. Is first array dimension columns and second dimension rows, or vice versa.
Return Value
Type:
BooleanSuccess status.
See Also