Increase pixel Size

TeeChart for ActiveX, COM and ASP
Post Reply
essar
Newbie
Newbie
Posts: 8
Joined: Fri Oct 22, 2004 4:00 am

Increase pixel Size

Post by essar » Thu May 28, 2009 10:35 am

I am a newbie at Tchart
I want to change the format style of a point chart (to smalldot / circle) and also the size (width=5 and height = 5) .
Please let me know how it can be done.

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

Post by Yeray » Thu May 28, 2009 10:47 am

Hi essar,

If your point series is the first one in your chart, you should do the following to achieve that in VB6:

Code: Select all

  TChart1.Series(0).asPoint.Pointer.Style = psCircle
  TChart1.Series(0).asPoint.Pointer.HorizontalSize = 5
  TChart1.Series(0).asPoint.Pointer.VerticalSize = 5
And welcome!
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