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.
Teechart Bargraph Issue V7
Hi egenNilesh,
This happens because with so many bars, their width is thinner than the border. You could try hiding the border:
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
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |