Page 1 of 1

Axis not showing the first value

Posted: Thu Jun 04, 2009 8:08 am
by 10050873
Hello,

On the Tpolar axis below, I want that the value 0% doesn't appear. Is it possible?
Image

Thanks

Regards

Posted: Thu Jun 04, 2009 11:50 am
by yeray
Hi Calou,

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;