Still the problem of TScrollPagerTool

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Still the problem of TScrollPagerTool

Post by elmec » Fri Mar 07, 2014 7:53 am

The problems are all of version 2014 .
// Bug 1 About this bug, I have mentioned before.
ScrollPager->ColorBandTool->StartValue = 500;
ScrollPager->ColorBandTool->EndValue = 600;
// Without the line below, the position set of ColorBandTool above not work!
Chart1->BottomAxis->SetMinMax(500, 600);

// Bug 2 ?
// ColorBandTool cannt be resized even I tried to drag it.
Refer to the example project.

// Bug3
There is no effect even I have changed the property.
But the 2013 version is OK.
See the images I have attached.
2013Version.png
2013Version.png (103.01 KiB) Viewed 6031 times
2014Version.png
2014Version.png (115.08 KiB) Viewed 6029 times
Attachments
TScrollPagerTool2.zip
(78.75 KiB) Downloaded 486 times

Yeray
Site Admin
Site Admin
Posts: 9552
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Still the problem of TScrollPagerTool

Post by Yeray » Fri Mar 07, 2014 4:46 pm

Hello,
elmec wrote:// Bug 1 About this bug, I have mentioned before.
ScrollPager->ColorBandTool->StartValue = 500;
ScrollPager->ColorBandTool->EndValue = 600;
// Without the line below, the position set of ColorBandTool above not work!
Chart1->BottomAxis->SetMinMax(500, 600);
Can you tell us the link where you mentioned this before?
I guess we could add some method to both set the ColorBandTool values and the Parent Chart Axis Range. However, I'd consider it as an enhancement not a bug because it never was automatic. I may be wrong and maybe it was working before and it has been broken now. That's why I'd like you to confirm it if possible.
elmec wrote:// Bug 2 ?
// ColorBandTool cannt be resized even I tried to drag it.
Refer to the example project.
Add this at the Form creation:

Code: Select all

  ScrollPager->ColorBandTool->StartLine->Visible=true;
  ScrollPager->ColorBandTool->EndLine->Visible=true;
I've added it to the defect list to be fixed in future releases:
http://bugs.teechart.net/show_bug.cgi?id=623
elmec wrote:// Bug3
There is no effect even I have changed the property.
But the 2013 version is OK.
See the images I have attached.
I don't understand this part. Could you please explain it with detail?
I don't even see any "Bug3" mentioned in the project you attached
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

elmec
Advanced
Posts: 129
Joined: Mon Aug 26, 2013 12:00 am

Re: Still the problem of TScrollPagerTool

Post by elmec » Mon Mar 10, 2014 5:33 am

Can you tell us the link where you mentioned this before?
I guess we could add some method to both set the ColorBandTool values and the Parent Chart Axis Range. However, I'd consider it as an enhancement not a bug because it never was automatic. I may be wrong and maybe it was working before and it has been broken now. That's why I'd like you to confirm it if possible.
http://www.teechart.net/support/viewtop ... =3&t=14545
// Bug 2 ?
// ColorBandTool cannt be resized even I tried to drag it.
Refer to the example project.

Add this at the Form creation:
Code: Select all
ScrollPager->ColorBandTool->StartLine->Visible=true;
ScrollPager->ColorBandTool->EndLine->Visible=true;
Thanks! So you means that version 2014 is different with version 2013, the start and end line is invisible by default.
// Bug3
There is no effect even I have changed the property.
But the 2013 version is OK.
See the images I have attached.

I don't understand this part. Could you please explain it with detail?
I don't even see any "Bug3" mentioned in the project you attached
Because the start and end line is invisible by default,
so I had thought that there is no effect even I changed the property of the lines.
It's my fault..sorry!

Yeray
Site Admin
Site Admin
Posts: 9552
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Still the problem of TScrollPagerTool

Post by Yeray » Tue Mar 11, 2014 1:14 pm

Hi elmec,
elmec wrote:
yeray wrote:Can you tell us the link where you mentioned this before?
I guess we could add some method to both set the ColorBandTool values and the Parent Chart Axis Range. However, I'd consider it as an enhancement not a bug because it never was automatic. I may be wrong and maybe it was working before and it has been broken now. That's why I'd like you to confirm it if possible.
http://www.teechart.net/support/viewtop ... =3&t=14545
I don't find any report in the tracking system describing what you suggest so I've added it:
http://bugs.teechart.net/show_bug.cgi?id=626
Please, feel free to add your mail account to the CC list of the ticket so you can be automatically notified when an update arrives.
elmec wrote: Thanks! So you means that version 2014 is different with version 2013, the start and end line is invisible by default.
Yes, that's why I added it to the bug tracking system:
Yeray wrote:I've added it to the defect list to be fixed in future releases:
http://bugs.teechart.net/show_bug.cgi?id=623
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply