DefaultLabel: IChartLabel;
The DefaultLabel property determines default settings for data labels.
On determining default settings of label, the Selected property is not available, when trying to use it, the message "The property is supported only for each label individually" appears.
This example assumes that there is the Chart object of the IChart type.
Sub DefaultL;
Var
Chart: IChart;
Begin
Chart.Series.DefaultLabel.BackgroundInfo.Color := New GxColor.CreateARGB( 255, 245, 120, 255);
End Sub DefaultL;
After executing the example the label fill is lilac.
See also: