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.
Bug if both Renko series and Point series on same chart
-
- Newbie
- Posts: 1
- Joined: Tue Jul 08, 2008 12:00 am
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?
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;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |