0
有人可以幫助我嗎?我可以使用extjs製作一個圖表,但現在我不知道該如何去做,就像我想要的那樣。所以,我構建了一個散點圖,並且想要使用固定的數字x和y軸,從0到5,我現在只需根據商店中的值自動決定我的數值軸的範圍值,但我不想要那個。帶固定數字軸的EXTJS圖表
Ext.create('Ext.chart.Chart', {
renderTo: myChart,
width: 500,
height: 300,
animate: true,
theme:'Category1',
store: store,
axes: [{
type: 'Numeric',
position: 'left',
title: 'Kepentingan',
grid: true,
minimum: 0
}, {
type: 'Numeric',
position: 'bottom',
title: 'Kinerja',
grid: true,
minimum: 0
}],
series: [ {
type: 'scatter',
markerConfig: {
radius: 5,
size: 5
},
axis: 'left',
xField: 'data2',
yField: 'data3'
}]
});
我應該在圖表的座標軸部分改變什麼?請幫忙。感謝您先進的幫助。
沒有工作,軸仍然顯示從商店:(您的幫助最大值。但由於:) –