Page 1 of 1

Sharpness of Volume chart

Posted: Fri Jul 03, 2015 4:59 am
by 16071129
Dear steema,
When we used volume chart its bar is not sharp. Kindly see the attached image which compares OHLC Chart with Volume for sharpness.
OHLC_Vol.JPG
OHLC_Vol.JPG (13.05 KiB) Viewed 7692 times

Re: Sharpness of Volume chart

Posted: Fri Jul 03, 2015 11:53 am
by Christopher
I think this effect happens when you set the Bar series pen to invisible, e.g.

Code: Select all

    private void InitializeChart()
    {
      tChart1.Aspect.View3D = false;

      Bar bar1 = new Bar(tChart1.Chart);
      bar1.FillSampleValues();

      bar1.Pen.Visible = false;
    }

Re: Sharpness of Volume chart

Posted: Mon Jul 06, 2015 10:51 am
by 16071129
Used the given sample but still giving the same issue.

Re: Sharpness of Volume chart

Posted: Mon Jul 06, 2015 11:24 am
by Christopher
Quant wrote:Used the given sample but still giving the same issue.
Can you please prepare a simple example project with which we can reproduce your issue here?