morris.js在x轴上发布小时数

时间:2014-04-16 18:08:43

标签: datetime morris.js

我正在尝试创建类似Google Analytics分析受众群体概述图表。我试图将小时数从午夜12:00到午夜11点开始放在x轴上

这就是我目前使用的:

Morris.Line({

    element: 'chart_div_compare',

    data: [            
        { hours: '00:00', a: 793, b: 729},
        { hours: '01:00', a: 524, b: 537},
        { hours: '02:00', a: 337, b: 347},
        { hours: '03:00', a: 272, b: 213},
        { hours: '04:00', a: 176, b: 169},
        { hours: '05:00', a: 174, b: 147},
        { hours: '06:00', a: 212, b: 193},
        { hours: '07:00', a: 341, b: 294},
        { hours: '08:00', a: 551, b: 501},
        { hours: '09:00', a: 724, b: 692},
        { hours: '10:00', a: 880, b: 896},
        { hours: '11:00', a: 955, b: 1004},
        { hours: '12:00', a: 1053, b: 1142},
        { hours: '13:00', a: 1063, b: 1150},
        { hours: '14:00', a: 92, b: 1123},
        { hours: '15:00', a: 0, b: 1151},
        { hours: '16:00', a: 0, b: 1222},
        { hours: '17:00', a: 0, b: 1155},
        { hours: '18:00', a: 0, b: 1246},
        { hours: '19:00', a: 0, b: 1100},
        { hours: '20:00', a: 0, b: 1199},
        { hours: '21:00', a: 0, b: 1395},
        { hours: '22:00', a: 0, b: 1361},
        { hours: '23:00', a: 0, b: 1005},
    ],
    // The name of the data record attribute that contains x-values.
    xkey: 'hours',
    hideHover: 'auto',
    // A list of names of data record attributes that contain y-values.
    ykeys: ['a', 'b'],
    // Labels for the ykeys -- will be displayed when you hover over the
    // chart.
    labels: ['2014-04-16', '2014-04-14']
});

x轴变为1900,1910,1920。 小时栏的格式是否有误? 我不知道如何让这个图表正确,但最终我想 上午12:00,上午1:00等

1 个答案:

答案 0 :(得分:26)

我刚遇到同样的问题,也许您可​​以使用以下选项:

parseTime: false

或者您可以自定义xlabel的格式方法。有关详细信息,您可以查看this websitemorris on github