Hello,
On the Tpolar axis below, I want that the value 0% doesn't appear. Is it possible?
Thanks
Regards
Axis not showing the first value
Hi Calou,
I think you could hide the label using onGetAxisLabel event:
I think you could hide the label using onGetAxisLabel event:
Code: Select all
procedure TForm1.Chart1GetAxisLabel(Sender: TChartAxis;
Series: TChartSeries; ValueIndex: Integer; var LabelText: String);
begin
if LabelText = '0' then LabelText := '';
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |