我有一个 jQplot 图表,我需要将month
标签(一月、二月、三月、四月、五月、六月、七月……)放在我的 X 轴上。
我尝试了一些教程中的示例,但它们不起作用。
有人可以帮助我吗?
这是我到目前为止所拥有的:
jQuery(document).ready(function(){
jQuery.plot(jQuery("#chartplace2"), [{
data : [[6, '0'], [5, '0'], [4, '0'], [3, '0'], [2, '0'], [1, '0'], [0, '32000']],
label : "Mijolino",
color : "#79755c"
}, {
data : [[6, '0'], [5, '0'], [4, '0'], [3, '0'], [2, '0'], [1, '0'], [0, '42500']],
label : "Mija",
color : "#78d6d0"
}], {
series : {
lines : {
show: true,
fill : true,
fillColor : {
colors : [{
opacity : 0.1
}, {
opacity : 0.20
}]
}
},
points: {
show : true
}
},
legend: {
position : 'nw'
},
grid: {
hoverable : true,
clickable : true,
borderColor : '#ccc',
borderWidth : 1,
labelMargin : 10
},
yaxis : {
min : 0,
max : 100000
},
title : {
text : 'Grafikon',
show : true
}
});
});