ChartBaseView.SetSelected(Int32, Int32, Boolean) Method
In This Article
Gets or sets whether a series point with the specified pointIndex of a series with the given seriesIndex is selected.
Namespace: DevExpress.Maui.Charts
Assembly: DevExpress.Maui.Charts.dll
NuGet Package: DevExpress.Maui.Charts
#Declaration
C#
public void SetSelected(
int seriesIndex,
int pointIndex,
bool isSelect
)
#Parameters
Name | Type | Description |
---|---|---|
series |
Int32 | The zero-based index of a series whose series point changes selection state. |
point |
Int32 | The zero-based index of a series point that changes selection state. |
is |
Boolean |
|
#Remarks
When the SelectionKind property is set to Series
you can to pass any number as the pointIndex
parameter.
See Also