Sharpness of Volume chart

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Quant
Advanced
Posts: 142
Joined: Tue Dec 30, 2014 12:00 am

Sharpness of Volume chart

Post by Quant » Fri Jul 03, 2015 4:59 am

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 8035 times

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Sharpness of Volume chart

Post by Christopher » Fri Jul 03, 2015 11:53 am

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

Quant
Advanced
Posts: 142
Joined: Tue Dec 30, 2014 12:00 am

Re: Sharpness of Volume chart

Post by Quant » Mon Jul 06, 2015 10:51 am

Used the given sample but still giving the same issue.

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Sharpness of Volume chart

Post by Christopher » Mon Jul 06, 2015 11:24 am

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

Post Reply