我正在使用 xtype:chart,这是我的轴。
axes: [{
type: 'numeric',
minimum: 0,
position: 'left',
fields: ['2011', '2012', '2013'],
title: 'Sales',
minorTickSteps: 1,
grid: {
odd: {
opacity: 1,
fill: '#ddd',
}
},
style: {
axisLine: false,
estStepSize: 20,
stroke: '#ddd',
'stroke-width': 0.5
},
minimum: 0,
maximum: 1000
}, {
type: 'category',
position: 'bottom',
fields: ['name'],
title: 'Month of the Year',
style: {
estStepSize: 1,
stroke: '#999'
}
}]
这是我的问题,不同用户之间的最小值和最大值变化很大。如果我为某些用户提供最小值 -0 和最大值为 10000,则图表不会显示。如果我设置为 0,则其他一些图表不会显示 - 1000,所以我想在加载图表之前从商店更改最小值和最大值。有没有可能这样做?我要求一个例子。谢谢