Hi,
When i choose the lsGroups option in a legend, the text (groups name) is aligned on the right side and not on on the left side of the legend !!! And there is no margin between the text and the right side of the legend (and it not possible to draw a custom symbol).
Is it normal or did i misunderstand something ?
Regards
Legend and series groups
Hi stsl,
The legend always aligns the text to the right, but your are right, setting the LegendStyle as lsSeriesGroups, there is no margin. I've added it to the wish list too (TV52014061).
The legend always aligns the text to the right, but your are right, setting the LegendStyle as lsSeriesGroups, there is no margin. I've added it to the wish list too (TV52014061).
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Hi stsl,
I considered the margin issue as a bug, not the alignment one.
I've investigated further and that's the result: The legend aligns the items depending on the property Legend.TextStyle. The styles considered as text, will be aligned to the left and the styles considered as numbers will be aligned to the right.
So, when you show series groups, you could do the following to force the legend to display it with the text format:
I hope this helps.
I considered the margin issue as a bug, not the alignment one.
I've investigated further and that's the result: The legend aligns the items depending on the property Legend.TextStyle. The styles considered as text, will be aligned to the left and the styles considered as numbers will be aligned to the right.
So, when you show series groups, you could do the following to force the legend to display it with the text format:
Code: Select all
Chart1.Legend.TextStyle := ltsPlain;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |