我在sencha图表中使用了系列。问题是系列中具有最高值的标记会在顶部被切割,如下图所示。蓝线的标记值为1000,在图像顶部被切割。
此问题也出现在文档中的sencha图表指南示例中。
{
type: 'line',
xField: 'name',
yField: 'n1',
itemId: 'incomeLineSeries',
title: 'Income',
getGutters: function() {
return [10, 10];
},
style: {
smooth: true,
stroke: '#63981a',
lineWidth: 3,
shadowColor: 'rgba(0,0,0,0.7)',
shadowBlur: 10,
shadowOffsetX: 3,
shadowOffsetY: 3
},
highlightCfg: {
scale: 2
},
marker: {
type: 'circle',
stroke: '#0d1f96',
fill: '#63981a',
lineWidth: 2,
radius: 4,
shadowColor: 'rgba(0,0,0,0.7)',
shadowBlur: 10,
shadowOffsetX: 3,
shadowOffsetY: 3,
fx: {
duration: 300
}
}
}
有关如何获得一些空间的任何帮助,以便顶部的圆形标记不会被切割?
答案 0 :(得分:0)