我想在 extjs 中更改条形图的颜色。我可以用渲染器串联更改条形图,但现在我也想更改图例的颜色。这是一段代码:
.. series : [ {
type : 'bar',
axis : 'bottom',
gutter : 0,
groupGutter : 0,
yField : this.fields,
title : this.fieldTitles,
colorArrayStyle : ['#FFF']
stacked : true,
fill: true,
scope: this,
renderer: function(sprite, record, attr, index, store) {
var color = fieldColors[index];
attr.fill = color;
return attr;
}, ....
如何更改图例的颜色?