如何为extjs条形图添加自定义颜色

时间:2017-06-01 09:36:13

标签: javascript jquery css extjs

我正在尝试使用extjs条形图向条形图添加自定义颜色和其他样式,我期待在插件属性中完成样式,这是系列之一。 这是我的代码

git rev-parse --show-toplevel

这里是Jisfiddle

http://jsfiddle.net/djaydxnd/54/

1 个答案:

答案 0 :(得分:1)

在你的小提琴中你正在使用ExtJS 4.2然后我假设你正在使用 4.2 版本。要提供颜色,您必须在renderer对象中编写getLegendColorseries函数

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属性。