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;
}, ....
凡例の色を変更するにはどうすればよいですか?