SurfaceSeries3DBaseSetDataValue Method |
LightningChart .NET Help
Set data values from X, Y, Z and color.
Namespace:
Arction.Wpf.Charting.Series3D
Assembly:
Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool SetDataValue(
int columnIndex,
int rowIndex,
double x,
double y,
double z,
double value,
Color color
)
Public Function SetDataValue (
columnIndex As Integer,
rowIndex As Integer,
x As Double,
y As Double,
z As Double,
value As Double,
color As Color
) As Boolean
public:
bool SetDataValue(
int columnIndex,
int rowIndex,
double x,
double y,
double z,
double value,
Color color
)
Parameters
- columnIndex
- Type: SystemInt32
Column index of Data array. - rowIndex
- Type: SystemInt32
Row index of Data array. - x
- Type: SystemDouble
X value. - y
- Type: SystemDouble
Y value. - z
- Type: SystemDouble
Z value. - value
- Type: SystemDouble
Value. - color
- Type: System.Windows.MediaColor
Color. Effects only if Fill is set to SourcePointColoring.
Return Value
Type:
BooleanFalse if invalid index. Otherwise true.
See Also