-
31 Jul 2012 5:12 AM #1
Unanswered: How to limit the legend label to 10 characters
Unanswered: How to limit the legend label to 10 characters
Is it possible to just show the first 10 characters of the label used in legend?
Please check the image below where some of the labels are not completely visible. So would like to limit all legend labels to 10 characters.
Can this be achieved using a renderer for the series?
LEGEND.png
-
2 Aug 2012 2:08 AM #2
you can limit the labels by using
Code:label: { renderer: function(val) { return val.substring(0, 10) + "..."; } }
Thank you for reporting this bug. We will make it our priority to review this report.


Reply With Quote