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.
Increase pixel Size
Hi essar,
If your point series is the first one in your chart, you should do the following to achieve that in VB6:
And welcome!
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
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |