我可以从1月到12月设置x轴。但我需要显示4月财政年度到明年3月的数据。 怎么做。请帮忙。
var myLineChart = new Chart($("#myChart"), {
type: 'line',
data: data,
options: {
scales: {
yAxes: [{
scaleLabel: {
display: true,
labelString: 'CONSUMPTION IN MUs ----->'
}
}],
xAxes: [{
type: "time",
time: {
format: 'MMM DD',
unit: 'month',
unitStepSize: 1,
displayFormats: {
'millisecond': 'MMM DD',
'second': 'MMM DD',
'minute': 'MMM DD',
'hour': 'MMM DD',
'day': 'MMM DD',
'week': 'MMM DD',
'month': 'MMM DD',
'quarter': 'MMM DD',
'year': 'MMM DD',
},
min: 'Apr',
},
scaleLabel: {
labelString: 'MONTHS ----->'
},
scaleOverride: true,
scaleShowLabels: true
}],
},
});
window.myLine = myLineChart;