tracker not aware of series visibility

The tracker always displays all series, even if they are invisible.

Setting series.showValueInTracker := false even does not the trick.

Is there any other thing to do?

Kind regards
 -Robert

Do you use the latest version?
I cannot see an issue here that when ShowValueInTracker = false it is displayed.

Test code:


begin

  AdvChartView1.BeginUpdate;

  AdvChartView1.InitSample;

  AdvChartView1.Panes[0].Series[0].ShowValueInTracker := true;
  AdvChartView1.Panes[0].Series[1].ShowValueInTracker := false;
  AdvChartView1.Panes[0].Series[2].ShowValueInTracker := true;
  AdvChartView1.Panes[0].CrossHair.CrossHairYValues.ShowSerieValues := true;

  AdvChartView1.Panes[0].CrossHair.CrossHairYValues.Position :=  AdvChartView1.Panes[0].CrossHair.CrossHairYValues.Position + [chValueTracker];

  AdvChartView1.EndUpdate;
end;

this does not show series 1 as expected in the tracker.
add this to your Code:

  AdvChartView1.Panes[0].CrossHair.Visible := true;

and see what happens :)

Regards
 -Robert

You're correct. We've now traced & fixed this. v3.8.2.4 will address this.