Page 1 of 1

Gantt

Posted: Thu Mar 13, 2008 7:24 am
by 13046291
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.

Image

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!

Posted: Thu Mar 13, 2008 10:14 am
by narcis
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.

Axis Arrows working on web charts?

Posted: Sat May 17, 2008 5:25 pm
by 13048857
would this controls work on the webchart?

Posted: Mon May 19, 2008 8:50 am
by narcis
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.

Gantt Web Scrolling

Posted: Tue Jun 17, 2008 11:59 am
by 13048857
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

Posted: Tue Jun 17, 2008 12:13 pm
by narcis
Hi THoMaSiN,

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);

Gantt Web Scrolling

Posted: Tue Jun 17, 2008 1:29 pm
by 13048857
I was refering to the WebChart.

Posted: Tue Jun 17, 2008 1:47 pm
by narcis
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.