Sencha Charts Pie标签旋转

时间:2013-01-14 13:24:11

标签: extjs sencha-touch sencha-touch-2 sencha-charts sencha-touch-2.1

我正在使用Sencha Touch 2.1和图表1.1来显示一些数据。

我有一张如下图所示的饼图:

Pie chart example

我希望标签保持现在的位置,但我希望它们是水平的(不是旋转的)。

extend: 'Ext.chart.PolarChart',
    requires: [
    'Ext.chart.axis.Numeric',
    'Ext.chart.axis.Category',
    'Ext.chart.series.Pie',
    'Charting.store.charts.perStore',
    'Ext.chart.interactions.Rotate'
],
config: {
    colors: ["#6295C7", "#CCCCC", "#FFFFF"],
    store: 'chrtProduct',
    // centered:true,
    // innerPadding:20,
    series: [{
        type: 'pie',
        labelField: 'verdeling',
        label:{
            /*display:'middle',
            orientation:'horizontal',*/
            field:'patVerdeling',
            font: '1em Trade Gothic LT Std Bold',
            contrast:true,
            disableCallout:true
        },
        xField: 'patVerdeling'
        //,rotation:90
    }] 
    //,interactions: ['rotate']

以下代码在取消注释时似乎没有做任何事情。

display:'middle',
orientation:'horizontal',

1 个答案:

答案 0 :(得分:2)

好的,我不确定这是否是最好的方式,但它对我有用,所以花了一些时间深入到sencha图表库后,解决方案比我预期的更容易。

只需在位于应用项目的PieSlice.js的{​​{1}}中对此行进行评论:

touch/src/chart/series/sprite/PieSlice.js

此行作为旋转饼图标签的关键角色。