折线图系列在 Sencha touch 2 图表中名列前茅
Line Chart Series gets cut at top Sencha touch 2 charts
我在煎茶图表中使用线系列。问题是系列中具有最高值的标记在顶部被剪切,如下图所示。蓝线有一个值为 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
}
}
}
关于如何获得一些 space 以便顶部的圆形标记不被切割的任何帮助?
我在煎茶图表中使用线系列。问题是系列中具有最高值的标记在顶部被剪切,如下图所示。蓝线有一个值为 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
}
}
}
关于如何获得一些 space 以便顶部的圆形标记不被切割的任何帮助?