Hi,
I want to know method for not drawing outside in graph axis on graph drawing.
First, I tried to use ClipPoints property.
code is following.
chart = GetChartName(0, chartindex, all);
chart->ClipPoints = true;
But it code is not effectively.
How to solve this problem?
Thanks.
How to method not drawing outside in graph axis
Re: How to method not drawing outside in graph axis
Hi,
You are right, I'm afraid the clipping doesn't work well in FMX (TV52015963).
You are right, I'm afraid the clipping doesn't work well in FMX (TV52015963).
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: How to method not drawing outside in graph axis
Hi,
Oh...
Is It bug on TeeChart ?
Oh...
Is It bug on TeeChart ?
Re: How to method not drawing outside in graph axis
Hi,
It's something we expect to be able to achieve, bug or feature request.
It's something we expect to be able to achieve, bug or feature request.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: How to method not drawing outside in graph axis
Hi,
Thank you for the information.
I hope that have the similar clipping effect as VCL.
Do you know how to solve in a different way?
Thank you for the information.
I hope that have the similar clipping effect as VCL.
Do you know how to solve in a different way?
Re: How to method not drawing outside in graph axis
Hello,
The only way I can think to work around this is to manually check, at OnScroll and OnZoom events, if all the points are in the ChartRect, and set as null those that aren't.
The only way I can think to work around this is to manually check, at OnScroll and OnZoom events, if all the points are in the ChartRect, and set as null those that aren't.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: How to method not drawing outside in graph axis
Hi,
I solved that I implement the your idea.
Thanks.
I solved that I implement the your idea.
Thanks.