Page 1 of 1

Bug if both Renko series and Point series on same chart

Posted: Thu Aug 07, 2008 1:09 pm
by 10049555
If you add a point series to a chart with a renko series:
1) the positions where the renko boxes paint change to incorrect positions
2) sometimes controls for the point series become inoperable.
Please fix this because while it persists I can't use points on a renko chart.

Posted: Fri Aug 08, 2008 7:49 am
by yeray
Hi blackthorne,

I've tried the following and only could see axis changes when the button is pressed.
Could you please tell us if you see any important step I'm missing to reproduce the problem? And could you tell us what TeeChart version are you using?

Code: Select all

procedure TForm1.FormCreate(Sender: TObject);
begin
  Chart1.AddSeries(TRenkoSeries.Create(nil));

  with Chart1[0] do
  begin
    Add(5);
    Add(7);
    Add(4);
    Add(5);
    Add(6);
    Add(7);
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  Chart1.AddSeries(TPointSeries.Create(nil));
  Chart1[Chart1.SeriesCount-1].FillSampleValues(25);
end;