折线图,将多个图表合二为一

时间:2019-03-09 15:38:52

标签: javascript

我上面有代码可以正常工作。

我无法使用日期作为坐标来创建该图形

我该怎么做?

我在上面做,它起作用:

var ctx = $("#myChart");
var scatterChart = new Chart(ctx, {
    type: 'line',
    data: {
        datasets: [{
            label: 'Gcéu 1',
            data: [{
                x: -10,
                y: 0
            }, {
                x: 0,
                y: 10
            }, {
                x: 10,
                y: 5
            }]
        },{
            label: 'Gcéu 2',
            data: [{
                x: 15,
                y: 15
            }, {
                x: 5,
                y: 10
            }, {
                x: 0,
                y: 2
            }]
        }]
    },
    options: {
        scales: {
            xAxes: [{
                type: 'linear',
                position: 'bottom'
            }]
        }
    }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>

<canvas id="myChart"></canvas>

现在,我需要 X 可以使用日期这种形式:

但是我尝试上面的方法,但是没有用。

var ctx = $("#myChart");
var scatterChart = new Chart(ctx, {
    type: 'line',
    data: {
        datasets: [{
            label: 'Gcéu 1',
            data: [{
                x: '2019-03-01',
                y: 20
            }, {
                x: '2019-03-02',
                y: 10
            }, {
                x: '2019-03-05',
                y: 5
            }]
        },{
            label: 'Gcéu 2',
            data: [{
                x: '2019-03-02',
                y: 15
            }, {
                x: '2019-03-03',
                y: 10
            }, {
                x: '2019-03-10',
                y: 2
            }]
        }]
    },
    options: {
        scales: {
            xAxes: [{
                type: 'linear',
                position: 'bottom'
            }]
        }
    }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>

<canvas id="myChart"></canvas>

但是由于日期字符串,它给出了错误。

我如何解决?

我需要做x =日期和y =整数的坐标,但是我做不到。

在这个问题上我需要您的帮助。

0 个答案:

没有答案