Gantt

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
newcomer
Newbie
Newbie
Posts: 6
Joined: Wed Aug 01, 2007 12:00 am

Gantt

Post by newcomer » Thu Mar 13, 2008 7:24 am

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!

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Thu Mar 13, 2008 10:14 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

THoMaSiN
Newbie
Newbie
Posts: 36
Joined: Mon Apr 14, 2008 12:00 am

Axis Arrows working on web charts?

Post by THoMaSiN » Sat May 17, 2008 5:25 pm

would this controls work on the webchart?

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Mon May 19, 2008 8:50 am

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

THoMaSiN
Newbie
Newbie
Posts: 36
Joined: Mon Apr 14, 2008 12:00 am

Gantt Web Scrolling

Post by THoMaSiN » Tue Jun 17, 2008 11:59 am

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jun 17, 2008 12:13 pm

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);
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

THoMaSiN
Newbie
Newbie
Posts: 36
Joined: Mon Apr 14, 2008 12:00 am

Gantt Web Scrolling

Post by THoMaSiN » Tue Jun 17, 2008 1:29 pm

I was refering to the WebChart.

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Post by Narcís » Tue Jun 17, 2008 1:47 pm

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.
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply