0

我对 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;
        }
    }]

是否可以为单个条应用两个以上的渐变。请帮助我解决这个问题。

在此先感谢,娜迦

4

1 回答 1

0

当前版本的 sencha touch 中的错误 .... 已在此处发布补丁

http://www.sencha.com/forum/showthread.php?162233-Bug-Fix-Charts-1.-Could-not-apply-gt-2-stops-to-gradient-and-angle-not-respected&p =692723#post692723

于 2011-12-16T10:24:46.860 回答