Hi,
I have TeeChart version TeeChartPro 2016.18.
Steps to reproduce:
1) Add 3 line series to the chart.
2) Add ScrollPager on that chart
3) Try to switch ScrollPager series from 1st to 3th serie
In the underlying sub-chart the previous selected serie are not removed. So when one switch from serie1 to serie2 the are always 2 series in sub-chart.
Series (none) is selected
Switch to "Wykres 1"
Switch to "Wykres 2"
"Wykres 1" are not deleted from sub-chart.
Best Regards,
Grzegorz
Bug in ScrollPager tool when switching series
Re: Bug in ScrollPager tool when switching series
Hello Grzegorz,
I could reproduce the problem and I also fixed it for the next maintenance release:
http://bugs.teechart.net/show_bug.cgi?id=1623
Thanks for reporting it.
If you have the TeeChart sources the change is simple:
At TeeScrollPagerTool.pas, in the TScrollPagerTool.SetSeries method change this:
for this:
I also fixed another problem to make the color of the series in the ScrollPagerTool to match the color of the series they come from. The fix for this is also at TeeScrollPagerTool.pas, at the end of the CopySeries method change this:
for this:
I could reproduce the problem and I also fixed it for the next maintenance release:
http://bugs.teechart.net/show_bug.cgi?id=1623
Thanks for reporting it.
If you have the TeeChart sources the change is simple:
At TeeScrollPagerTool.pas, in the TScrollPagerTool.SetSeries method change this:
Code: Select all
while t<SubChartTChart.SeriesCount-1 do
Code: Select all
while t<SubChartTChart.SeriesCount do
Code: Select all
s.ParentChart:=SubChartTChart;
end;
Code: Select all
s.ParentChart:=SubChartTChart;
s.Color:=Value.Color;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Bug in ScrollPager tool when switching series
Hi,
I try version 2016.19 but this bug still exists despite that in bug tracker stays that it's fixed.
Regards,
Grzegorz
I try version 2016.19 but this bug still exists despite that in bug tracker stays that it's fixed.
Regards,
Grzegorz
Re: Bug in ScrollPager tool when switching series
Hi Grzegorz,
There was a problem in the v2016.19 SourceCode installer we published. Please try downloading it again.
There was a problem in the v2016.19 SourceCode installer we published. Please try downloading it again.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |