2013-08-06 48 views
0

我想更改extjs type ='pie'中的圖表顏色。 我可以使用渲染器系列中的塊請看例子:在圖表中的系列塊中的渲染器extjs4

..... }, 
       series : [ { 
        type : 'bar', 
        axis : 'bottom', 
        gutter : 0, 
        groupGutter : 0, 
        yField : this.fields, 
        title : this.fieldTitles, 
        stacked : true, 
        fill: true, 
        scope: this, 
        renderer: function(sprite, record, attr, index, store) { 
         var color = this.fieldColors[index]; 
         return Ext.apply(attr, { 
          fill: color 
         }); 
        },..... 

回答