In a chart grid, I would like to only show lines for specific values. For example, in the image below:
If I only wanted to show line and values for 15 and 25 for the left axis (the lower bounds of the two series) and 10 and 30 for the bottom axis, could I do that?
Chart Grid--show only specific lines/values
-
- Advanced
- Posts: 228
- Joined: Tue Aug 28, 2007 12:00 am
- Location: Oregon, USA
Re: Chart Grid--show only specific lines/values
Hello,
You can use custom labels for that. Ie:
You can use custom labels for that. Ie:
Code: Select all
with Chart1.Axes.Left do
begin
Items.Clear;
Items.Add(15, '15');
Items.Add(25, '25');
end;
with Chart1.Axes.Bottom do
begin
Items.Clear;
Items.Add(10, '10');
Items.Add(30, '30');
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |