Success! Looks like we've fixed this one. According to our records the fix was applied for EXTGWT-2385 in 3.0.2.
  1. #1
    Sencha User
    Join Date
    Jul 2012
    Posts
    2
    Vote Rating
    0
    JimmerH is on a distinguished road

      0  

    Default 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 :

    Code:
    final PieSeries<T> series = new PieSeries<T>();	
    SeriesLabelConfig<T> labelConfig = new SeriesLabelConfig<T>();
    labelConfig.setLabelPosition(LabelPosition.OUTSIDE);
    series.setLabelConfig(labelConfig);
    Cheers,

    James

  2. #2
    Sencha - GXT Dev Team BrendanC's Avatar
    Join Date
    Aug 2010
    Posts
    534
    Vote Rating
    3
    BrendanC is on a distinguished road

      0  

    Default


    Thanks for the report.