不显示 Extjs 饼图标注行

Extjs pie callout lines are not displayed

我在 extjs 中创建了一个饼图,但未显示标注行,请参见以下屏幕截图和代码:

这是我真正的馅饼:

这就是我想要的:

这是我的代码:

Ext.create('Ext.chart.Chart', {
             renderTo: 'infos2',
             width: 500,
             height: 300,
             animate: true,
             store: store2,
             series: [
             {
               type: 'pie',
               highlight: {
                   segment: {
                     margin: 20
                   }
                 },
               field: 'population',
               label: {
                 field: 'state',
                 display: 'outside',
                 font: '12px Arial',
                 calloutLine: {
                        width: 5,
                        length: 30
                 }
               }
             }
             ]
          });

根据Yellen的评论,extjs的4.2.2版本增加了calloutLine