我正在尝试使用extjs条形图向条形图添加自定义颜色和其他样式,我期待在插件属性中完成样式,这是系列之一。 这是我的代码
git rev-parse --show-toplevel
这里是Jisfiddle
答案 0 :(得分:1)
在你的小提琴中你正在使用ExtJS 4.2
然后我假设你正在使用 4.2 版本。要提供颜色,您必须在renderer
对象中编写getLegendColor
和series
函数
getLegendColor: function(index) {
return 'rgb(255,203,36)';
},
renderer: function(sprite, record, attr, index, store) {
return Ext.apply(attr, {
fill: 'rgb(255,203,36)'
});
}
希望这有帮助。
在ExtJA 6
中,您可以直接使用colors
对象的series
属性。