对于sencha touch非常新,因为我的要求是获得具有四种颜色渐变的条形图。但截至目前,我可以只为酒吧应用两种颜色渐变。
以下是我的代码,
gradients:
[ {
'id': 'v-1',
'angle': 0,
stops: {
0: {
color: '#79bbff'
},
100: {
color: '#0d55a9'
}
}
}]
series:
[ {
type: 'bar',
renderer: function(sprite, storeItem, barAttr, i, store11) {
barAttr.fill = colors[i % colors.length];
return barAttr;
}
}]
是否可以为单条应用两个以上的渐变。请帮我解决这个问题。
提前致谢, 纳加
答案 0 :(得分:0)