Horizontal Bar Gaph
-
- Newbie
- Posts: 65
- Joined: Mon Jan 19, 2004 5:00 am
Horizontal Bar Gaph
Is it possible to have the scale of the Horizontal Bar Graph at the top of the graph rather than the bottom
Re: Horizontal Bar Gaph
Hello MikeTheLad,
Yes is possible. To achieve it you must change the property HorizAxis of Series that defines to which Horizontal Axis ( Top or Bottom axis ) the Series will be horizontally scaled. You can do somenthing as next code:
I hope will helps.
Thanks,
Yes is possible. To achieve it you must change the property HorizAxis of Series that defines to which Horizontal Axis ( Top or Bottom axis ) the Series will be horizontally scaled. You can do somenthing as next code:
Code: Select all
HorizBar horizBar = new HorizBar(tChart1.Chart);
horizBar.FillSampleValues();
horizBar.HorizAxis = HorizontalAxis.Top;
Thanks,
Best Regards,
Sandra Pazos / 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 |