Understanding volume chart

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
pw
Newbie
Newbie
Posts: 57
Joined: Fri Nov 15, 2002 12:00 am

Understanding volume chart

Post by pw » Wed Jul 22, 2009 6:55 am

Hi,

I'm using version 3.5.3187.15584 and was exploring Welcome !\Chart styles\Financial\Volume. I noticed that if I move the chart upwards, the volume lines continue on into the negative region.

Is it possible to have the volume lines starting from zero instead of going infinitely into the negative values? It's quite annoying as I'm using the volume style with other styles, and users often move the chart around.

Thanks.

Yeray
Site Admin
Site Admin
Posts: 9540
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Understanding volume chart

Post by Yeray » Wed Jul 22, 2009 9:22 am

Hi pw,

You could use the following:

Code: Select all

volume1.UseOrigin = true;
volume1.Origin = 0;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

pw
Newbie
Newbie
Posts: 57
Joined: Fri Nov 15, 2002 12:00 am

Re: Understanding volume chart

Post by pw » Thu Jul 23, 2009 1:28 am

Thanks, Yeray. Works wonderfully!

Post Reply