AreaSeriesGetPoint Method (Int32, Double, Double) |
LightningChart .NET Help
Get point by given index.
Namespace:
Arction.Wpf.ChartingMVVM.SeriesXY
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic bool GetPoint(
int index,
out double xValue,
out double yValue
)
Public Function GetPoint (
index As Integer,
<OutAttribute> ByRef xValue As Double,
<OutAttribute> ByRef yValue As Double
) As Boolean
public:
bool GetPoint(
int index,
[OutAttribute] double% xValue,
[OutAttribute] double% yValue
)
Parameters
- index
- Type: SystemInt32
Index of point to get. - xValue
- Type: SystemDouble
X value. - yValue
- Type: SystemDouble
Y value.
Return Value
Type:
BooleanFalse if invalid index is given, otherwise true.
See Also