two probs with selector tool

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
moelski
Advanced
Posts: 212
Joined: Mon Apr 23, 2007 12:00 am
Location: Germany
Contact:

two probs with selector tool

Post by moelski » Wed Jul 11, 2007 5:25 am

Hi !

I figured out two problems with the selector tool:

1) If you select a series in the chart and disable that series with the chartlistbox, the selection is still there. I think the selection should be not visible in that case, too.
2) If you have custom axis with a axis caption you can select them. But if the caption is rotated (90° in my case) the selection ist still with 0°. This looks a little bit strange :wink:

moelski
Advanced
Posts: 212
Joined: Mon Apr 23, 2007 12:00 am
Location: Germany
Contact:

Post by moelski » Wed Jul 11, 2007 5:49 am

3) Why isn´t it possible to catch the Callout from a Rectangle tool with the selector tool?

Pep
Site Admin
Site Admin
Posts: 3295
Joined: Fri Nov 14, 2003 5:00 am
Contact:

Post by Pep » Fri Jul 13, 2007 10:49 am

Hi Dominik,
1) If you select a series in the chart and disable that series with the chartlistbox, the selection is still there. I think the selection should be not visible in that case, too.
Yes, you're correct, it's a bug which has been added down our defect list. in meantime a workaround could be to clear Selection when Series activation changes :

Code: Select all

procedure TForm1.ChartListBox1ChangeActive(Sender: TChartListBox;
  Series: TCustomChartSeries);
begin
  ChartTool2.ClearSelection;
end;
2) If you have custom axis with a axis caption you can select them. But if the caption is rotated (90° in my case) the selection ist still with 0°. This looks a little bit strange Wink
Yes, another bug, added to the defect list to fix it for next maintenance releases. I'm afraid there's not a workaround for this one.
3) Why isn´t it possible to catch the Callout from a Rectangle tool with the selector tool?
For the moment only the following parts of the entire Chart are considered :

Annotation Tool
Rectangle Tool
Chart
Chartrect
Title
Foot
SubTitle
SubFoot
Legend
Axis
Series
SeriesMarks
AxisTitle

We'll consider to add more parts for the next releases. It as been added as a wish.

Post Reply