Hi.
Yes, sure, it can be done. The feature is demonstrated in TeeChart demo. Especially, check the following example:
"All Features -> Axes -> Labels -> Custom Labels"
Alternatively, you can also use chart OnGetAxisLabel event to customize individual axis label font properties. Here is an example:
Code: Select all
procedure TAxisLabelsFormat.Chart1GetAxisLabel(Sender: TChartAxis;
Series: TChartSeries; ValueIndex: Integer; var LabelText: String);
var Num : Double;
begin
Num:=StrToFloat(LabelText);
// if value > 300, color it red, otherwise blue
if Sender=Chart1.Axes.Left then
begin
if Num>300 then Sender.LabelsFont.Color:=clRed
else Sender.LabelsFont.Color:=clBlue;
end;
end;
Similar code, but with different condition (compare axis label value directly with point labels) could also be used in your case.