Page 1 of 1

Teechart Bargraph Issue V7

Posted: Wed Mar 25, 2009 9:42 am
by 9534693
We are using TeeChart V7 to show bar graph. Whenever the data in series is large ( 300 to 500 values), the bar graph apprears in black color.
There are two series (one with color Red and other with Color Green). For lesser points they appear fine.

Posted: Wed Mar 25, 2009 10:01 am
by yeray
Hi egenNilesh,

This happens because with so many bars, their width is thinner than the border. You could try hiding the border:

Code: Select all

  TChart1.Series(0).Pen.Visible = False
  TChart1.Series(1).Pen.Visible = False