DXChartBase.SetSelected(Boolean, nint, nint) Method
Selects/deselects a series/series point.
Namespace: DevExpress.Xamarin.iOS.Charts
Assembly: DevExpress.Xamarin.iOS.Charts.dll
NuGet Package: DevExpress.XamarinForms.Charts
Declaration
public virtual void SetSelected(
bool isSelected,
nint seriesIndex,
nint pointIndex
)
Parameters
Name | Type | Description |
---|---|---|
isSelected | Boolean | true if the element is selected; otherwise false. |
seriesIndex | nint | The zero-based index of the series whose selection / whose point’s selection you manage. |
pointIndex | nint | The zero-based index of the point whose selection you manage. |
Remarks
The SelectionKind property specifies element that the method selects. The method ignores the pointIndex parameter when the SelectionMode is set to Series.
See Also