How do I scale the Left Y Axis to show a negative Time value.
Values are in the range of less the 1 minute
Scaling Negative Time Values on Y Axis
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi madup,
Could you please extend on what are you trying to obtain? Could you post an image of it? You can post your files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup.
Could you please extend on what are you trying to obtain? Could you post an image of it? You can post your files at [url]news://www.steema.net/steema.public.attachments[/url] newsgroup.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Hi,
the only way I can think of is to set the labels (the ones you want to show) by using the the OnGetAxisLabel event, using similar code to the following :
the only way I can think of is to set the labels (the ones you want to show) by using the the OnGetAxisLabel event, using similar code to the following :
Code: Select all
procedure TForm1.Chart1GetAxisLabel(Sender: TChartAxis;
Series: TChartSeries; ValueIndex: Integer; var LabelText: String);
begin
if sender=chart1.Axes.Left then
if labeltext = '' then
labeltext := 'mylabel';
end;
Pep Jorge
http://support.steema.com
http://support.steema.com