Teechart Bargraph Issue V7

TeeChart for ActiveX, COM and ASP
Post Reply
egenNilesh
Newbie
Newbie
Posts: 9
Joined: Thu Mar 29, 2007 12:00 am

Teechart Bargraph Issue V7

Post by egenNilesh » Wed Mar 25, 2009 9:42 am

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.

Yeray
Site Admin
Site Admin
Posts: 9601
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Post by Yeray » Wed Mar 25, 2009 10:01 am

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
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply