我正在尝试将ExtJS折线图标记渲染为方形,但形状始终为圆形。以下是我的代码:
renderer: function (sprite, record, attr, index, {
return Ext.apply(attr, {
type: 'square',
size: 4,
fill: '#FFF'
});
}
我在这里有示例实现:https://fiddle.sencha.com/#fiddle/nq4
请帮忙!提前谢谢。
答案 0 :(得分:3)
您可以使用markerConfig
来调整标记属性。
markerConfig: {
type: 'square',
height:10,
width:10,
'fill': '#fff'
}