-
10 Aug 2012 6:55 AM #1
Incorrect rendering of PieChart labels positioned outside
Incorrect rendering of PieChart labels positioned outside
If you use the LabelPosition.OUTSIDE setting for the PieSeries the labels are drawn outside of the charts bounding box.
In PieSeries.drawSeries() it fits the pie chart to fill the bounding box without taking into consideration the size or positions of labels.
Example to show this :
Cheers,Code:final PieSeries<T> series = new PieSeries<T>(); SeriesLabelConfig<T> labelConfig = new SeriesLabelConfig<T>(); labelConfig.setLabelPosition(LabelPosition.OUTSIDE); series.setLabelConfig(labelConfig);
James
-
20 Aug 2012 9:33 AM #2
Success! Looks like we've fixed this one. According to our records the fix was applied for
EXTGWT-2385
in
3.0.2.


Reply With Quote