I have a chart plotting a line series but when I add a HighLow series the Legend and Annotation tool are blanked out.
I've just updated to version 2018.25 from 2017.21, so this bug has been introduced since then.
Regards,
Sean.
THighLowSeries and Legend drawing problem?
THighLowSeries and Legend drawing problem?
- Attachments
-
- Normal Chart showing Line Series
- 2018-10-18_14-37-17.jpg (60.53 KiB) Viewed 9414 times
-
- Chart with line and HighLow Series showing blanked Legend & Annotation
- 2018-10-18_14-35-58.jpg (55.08 KiB) Viewed 9414 times
Re: THighLowSeries and Legend drawing problem?
Hello,
I could reproduce the problem so I've added it to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=2116
I could reproduce the problem so I've added it to the public tracker:
http://bugs.teechart.net/show_bug.cgi?id=2116
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: THighLowSeries and Legend drawing problem?
Hello,
This is just to inform I have been able to fix the bug (#2116) so the next release will include it.
If you want to fix it in your sources, you just have to add this line at the end of the THighLowSeries.DoBeforeDrawValues method, in ErrorBar.pas:
This is just to inform I have been able to fix the bug (#2116) so the next release will include it.
If you want to fix it in your sources, you just have to add this line at the end of the THighLowSeries.DoBeforeDrawValues method, in ErrorBar.pas:
Code: Select all
Procedure THighLowSeries.DoBeforeDrawValues;
//...
ParentChart.Canvas.UnClipRectangle;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: THighLowSeries and Legend drawing problem?
Hi Yeray,
Thanks for fixing this so quickly.
Regards,
Sean.
Thanks for fixing this so quickly.
Regards,
Sean.