Page 1 of 1

TVolumeSeries start position problem

Posted: Thu Jan 16, 2014 3:58 am
by 16562051
Hi,

When multiple series are used and a TVolumeSeries is placed in the middle of chart, it will paint below zero.
This won't happen if It is replaced with TBarSeries. Please help, thanks!

Re: TVolumeSeries start position problem

Posted: Thu Jan 16, 2014 4:40 pm
by yeray
Hi,

Try setting the TVolumeSeries' UseYOrigin and YOrigin properties:

Code: Select all

myVolumeSeries.UseYOrigin:=True;
myVolumeSeries.YOrigin:=0;