I am using Activex v8 version of TeeChart.
I am using "scPoint" to display a few points and i am setting the point style as "psCross". However when i set the color to red (or any other color), the "cross" is always displayed in black color. Is the "SetColor" disabled for this style?
However, i am able to change the color if i set the point style as "psCircle" or "psTriangle".
Thanks,
Hari
Not able to set color for point series
Re: Not able to set color for point series
Hi Hari,
You have to change the pen color when you use this style because it has no brush:
You have to change the pen color when you use this style because it has no brush:
Code: Select all
TChart1.Series(0).asPoint.Pointer.Style = psCross
TChart1.Series(0).asPoint.Pointer.Pen.Color = vbRed
Best Regards,
![]() | Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) |
![]() ![]() ![]() ![]() ![]() ![]() |
Please read our Bug Fixing Policy |
Re: Not able to set color for point series
@Yeray
Thanks for the reply. I am able to change the color now
Hari
Thanks for the reply. I am able to change the color now

Hari
Re: Not able to set color for point series
Hi Hari,
You're welcome!
You're welcome!

Best Regards,
![]() | Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) |
![]() ![]() ![]() ![]() ![]() ![]() |
Please read our Bug Fixing Policy |