Hi,
We are facing an issue in polygon name display as shown in snap shot attached. The issue is that when the size of polygon is small then polygon name does not appear, however when we zoom in or the polygon is bigger in size, the polygon name appears.
Thanks & regards,
Bhanu
Issue in polygon name display
Re: Issue in polygon name display
Hello,
What series type are you using to draw these polygons?
What series type are you using to draw these polygons?
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Issue in polygon name display
Hi Yeray,
Thanks for your reply. We are currently using map series for polygon drawing.
Thanks & regards,
Bhanu.
Thanks for your reply. We are currently using map series for polygon drawing.
Thanks & regards,
Bhanu.
Re: Issue in polygon name display
Hello,
By default, the TMapSeries has "MapMarks.AutoSize" property set to "True". This changes the font size trying to fit the text in the shape bounds, with a minimum size of 5.
If you set the "MapMarks.AutoSize" property to "False", the "Marks.Font.Size" will be respected and the marks will be shown if they fit in the shape bounds.
If you want to draw the the marks out of the shape bounds, you can draw the text manually at OnAfterDraw event.
By default, the TMapSeries has "MapMarks.AutoSize" property set to "True". This changes the font size trying to fit the text in the shape bounds, with a minimum size of 5.
If you set the "MapMarks.AutoSize" property to "False", the "Marks.Font.Size" will be respected and the marks will be shown if they fit in the shape bounds.
If you want to draw the the marks out of the shape bounds, you can draw the text manually at OnAfterDraw event.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |