x轴上的月份不仅仅显示在折线图中,我不知道为什么,因为它显示在其他图形上。
<script>
Morris.Line({
element : 'chart',
data:[<?php echo $chart_data; ?>],
xkey:'month',
ykeys:['gasPrice', 'forcastPrice',],
labels:['gasPrice', 'forcastPrice'],
hideHover:'auto',
xLabelAngle: 70,
xLabelFormat: function (x) {
return " " + x.src.month + "";
},
});
</script>