Hi
We are using Delphi 7 and TeeCharts Pro 7
We have several lines and we are trying to use pointer style to distinguish between them. When using psRectangle or psCircle it works fine as they use the colour of the line.
However when we use psStar, psCross and psDiagCross for 3 other lines, the pointer color is always black even if you try and change the pointer colour. This wouldn't normally be a big problem except that the charts background colour is black, so we can't see them. Is there any way to change the colour of them?
Thanks in Advance
Pointer Style and color
Hi Corbie,
The problem is that those pointer styles have no surface to paint in and that's why changing their color doesn't affect. Otherwise, you can change their border color. So you should do something like following:
The problem is that those pointer styles have no surface to paint in and that's why changing their color doesn't affect. Otherwise, you can change their border color. So you should do something like following:
Code: Select all
Series3.Pointer.Pen.Color := clGreen;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |