EnableLabel(Index: Integer; Value: Boolean);
Index. The series label number. Numeration of series labels starts from zero.
Value. The label display parameter.
The EnableLabel property determines whether labels are displayed for a data series.
The following example assumes that there is the Serie object of the IChartSerie type, and all series labels are displayed.
Sub SetLabel;
Var
Serie: IChartSerie;
Begin
Serie.EnableLabel(0,False);
End Sub SetLabel;
After executing the example the first level of the data series is not displayed in the graph.
See also: