渲染ExtJs折线图方形标记

时间:2015-06-02 09:38:24

标签: extjs charts markers lineseries

我正在尝试将ExtJS折线图标记渲染为方形,但形状始终为圆形。以下是我的代码:

  renderer: function (sprite, record, attr, index, {
                    return Ext.apply(attr, {
                        type: 'square',
                         size: 4,
                        fill: '#FFF'

                    });
                }

我在这里有示例实现:https://fiddle.sencha.com/#fiddle/nq4

请帮忙!提前谢谢。

1 个答案:

答案 0 :(得分:3)

您可以使用markerConfig来调整标记属性。

markerConfig: {
   type: 'square',
   height:10,
   width:10,
   'fill': '#fff'
}

这是fiddle demonstrating