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.
Sharpness of Volume chart
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Sharpness of Volume chart
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 |
Re: Sharpness of Volume chart
Used the given sample but still giving the same issue.
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Sharpness of Volume chart
Can you please prepare a simple example project with which we can reproduce your issue here?Quant wrote:Used the given sample but still giving the same issue.
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 |