如何在折线图中从4月到明年3月的x轴设置或更改为x轴

时间:2017-03-20 13:00:05

标签: jquery chart.js

我可以从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;

0 个答案:

没有答案