0

我想更改 extjs 类型 ='pie' 中图表的颜色。我可以在系列块中使用渲染器吗?请看示例:

.....    },
                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
                        });
                    },.....
4

1 回答 1

0

您可以为您的系列使用 colorSet 属性,而不是自定义渲染器。

series: [{
    colorSet: this.fieldColors,
    ...
}]

请参阅http://docs.sencha.com/extjs/4.2.1/#!/api/Ext.chart.series.Pie-cfg-colorSet

于 2013-08-10T00:27:26.217 回答