I use 2 gantcharts in one window.
It is a gantt chart for persons(left axis) and dates(bottom axis)
In the left chart i have labels on the left axis, in the right chart I have no left axis.
I load in both charts irrelevant dates for each person in 1980 to set the vertical distance of each person in both charts.
I see horizontal gridlines in the left chart(with labels) and no horizontal gridlines in the right chart(without labels).
How can I get these horizontal gridlines in a chart without labels?
Hans
Horizontal Gridlines without labels
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Hans,
Instead of hiding left axis you could hide its labels using:
or you can use right axis as vertical axis using:
This can also be done using Chart Editor.
Instead of hiding left axis you could hide its labels using:
Code: Select all
tChart2.Axes.Left.Labels.Visible=false;
Code: Select all
gantt2.VertAxis=Steema.TeeChart.Styles.VerticalAxis.Right;
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 |
Doesn't work
I tried that, but the horizontal gridlines only appear with labels visible.
Hans
Hans
Found it!!
You should set "at labels only" off at the ticks tab.
Hans
Hans