Hello,
we are using TChart Ver. 3.2.2894.29191
We have about 50 Values (names) on the left axis and want to show the working time of those names in the chart. The Gantt does not show all the names on the left axis, because there is not enough space. It shows some names and the rest is just shown as ticks.
How can we set the left axis to be able to SCROLL and show therefore all names?
Also we would like to be able to scroll as well the bottom axis.
Thank you!
Gantt
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi newcomer,
You could use axes SetMinMax method (eg.: tChart.Axes.Left.SetMinMax(0,10);) for setting initial axes scale and then use AxisArrows tool for scrolling the axes. You can find a tool example at All Features\Welcome !\Tools\Axis Arrows in the new features demo, available at TeeChart's program group.
You could use axes SetMinMax method (eg.: tChart.Axes.Left.SetMinMax(0,10);) for setting initial axes scale and then use AxisArrows tool for scrolling the axes. You can find a tool example at All Features\Welcome !\Tools\Axis Arrows in the new features demo, available at TeeChart's program group.
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 |
Axis Arrows working on web charts?
would this controls work on the webchart?
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi THoMaSiN,
No, AxisArrows tool won't work in WebChart. Using WebChart you can scroll as shown in the Interacting with Charts\Scrolling at the live ASP.NET Demo.
No, AxisArrows tool won't work in WebChart. Using WebChart you can scroll as shown in the Interacting with Charts\Scrolling at the live ASP.NET Demo.
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 |
Gantt Web Scrolling
Can this work vertically as well as horizontally? if yes, how.
if not, how do you suggest to show more results than the chart can fit?
Thanks
if not, how do you suggest to show more results than the chart can fit?
Thanks
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi THoMaSiN,
Yes, this is possible associating AxisArrow tool to an axis, for example:
Yes, this is possible associating AxisArrow tool to an axis, for example:
Code: Select all
Steema.TeeChart.Tools.AxisArrow vertArrow = new Steema.TeeChart.Tools.AxisArrow(tChart1.Axes.Left);
Steema.TeeChart.Tools.AxisArrow horizArrow = new Steema.TeeChart.Tools.AxisArrow(tChart1.Axes.Bottom);
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 |
Gantt Web Scrolling
I was refering to the WebChart.
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi THoMaSiN,
No, as I told you earlier on this thread, those tools are not available using WebChart. In that case you should either use Scroll tool as shown at the Interacting with Charts\Scrolling example in the live ASP.NET Demo or use buttons and change axes scales using their SetMinMax method.
No, as I told you earlier on this thread, those tools are not available using WebChart. In that case you should either use Scroll tool as shown at the Interacting with Charts\Scrolling example in the live ASP.NET Demo or use buttons and change axes scales using their SetMinMax method.
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 |