Axis labels in series area?
-
- Newbie
- Posts: 16
- Joined: Wed Feb 27, 2013 12:00 am
Axis labels in series area?
Is this possible with TeeChart? Is there a way to create such an effect using labels with a Grid?
Thanks,
Jeremy
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Axis labels in series area?
Hi Jeremy,
Yes, this is possible setting the horizontal axis to be the top axis, setting RelativePosition to 100 and drawing axes above the series, for example:
Yes, this is possible setting the horizontal axis to be the top axis, setting RelativePosition to 100 and drawing axes above the series, for example:
Code: Select all
bar1.HorizAxis = Steema.TeeChart.Styles.HorizontalAxis.Top;
tChart1.Axes.Top.RelativePosition = 100;
tChart1.Axes.Left.Visible = false;
tChart1.Axes.DrawBehind = false;
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 |