Page 1 of 1

Pointer Style and color

Posted: Mon Jun 25, 2007 3:17 pm
by 9245471
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

Posted: Tue Jun 26, 2007 7:49 am
by yeray
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:

Code: Select all

Series3.Pointer.Pen.Color := clGreen;