IsPropertyEqual (SerieProperty: ChartSerieProperty): Boolean;
SerieProperty. The series properties.
The IsPropertyEqual property returns the result of verifying whether the property values of all the selected series are identical.
Executing the example requires a form, the Button1 button located on this form, the ChartBox component and UiChart component used as a data source.
Sub Button1OnClick(Sender: Object; Args: IMouseEventArgs);
Var
SelectedSeries: IChartSelectedSeries;
Begin
SelectedSeries:= UiChart1.Chart.SelectedSeries;
Debug.WriteLine(SelectedSeries.IsPropertyEqual(ChartSerieProperty.DisplayMarker));
End Sub Button1OnClick;
After executing the example, the console contains the result of verification.
See also: