Page 1 of 1

Increase pixel Size

Posted: Thu May 28, 2009 10:35 am
by 9084649
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.

Posted: Thu May 28, 2009 10:47 am
by yeray
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!