1
Y軸標籤始終從0開始,直到稍大於圖中的最大值。我想從50開始,直到100(50,60,70,80,90,100)。如何控制電子書中Y軸上的標籤
我使用的代碼如下:
HTML代碼: DIV ID = 'chart_1' 風格= '高度:200像素;寬度:400像素;'/DIV
JavaScript代碼:
$(document).ready(function() {
$.elycharts.templates['line_basic_3'] = {
type: "line",
margins: [22, 10, 20, 30],
defaultSeries: {
type: "line",
rounded: false,
plotProps: {
"stroke-width": 5
}
},
series: {
serie1: {
type: "line",
color: "#AAAAAA"
},
serie2: {
type: "line",
color: "#00AA00"
},
serie3: {
type: "line",
color: "#0000BB"
},
serie4: {
type: "line",
color: "green"
},
serie5: {
type: "line",
color: "black"
}
},
defaultAxis: {
labels: true,
labelsProps: {
fill: "#FFF",
"font-size": "10px"
}
},
features: {
grid: {
draw: [true, false],
forceBorder: true,
//ny: 3, // use 10 divisions for y grid
//nx: 5, // 10 divisions for x grid
props: {
stroke: "#FFF" // color for the grid
}
},
legend: {
horizontal: true,
width: 360,
height: 20,
x: 30,
y: 0,
borderProps: {
"fill-opacity": 0.1
}
}
}
}
$('#chart_1').chart({ template: 'line_basic_3', legend: {serie1:'2011',serie2:'2012',serie3:'2013'}, labels: ['Jan','Feb','Mar'], values: {serie1:[20,45,10],serie2:[40,15,35],serie3:[10,30,5]}});"
});
病檢查elycharts文檔。沒有改變軸範圍的選擇...還檢查這個小提琴:http://jsfiddle.net/SyDWF/第一系列的最小值是-1000,在圖表上它是0 ...這個插件是像一個地獄。 – Kasyx 2013-04-19 08:58:52