如何使用flot渲染此条形图

时间:2011-11-10 12:28:23

标签: flot

你能用flot渲染这样的条形图吗?

Example chart

我是否需要手动创建数据集才能获得此结果,而不是使用模式:'time'?

1 个答案:

答案 0 :(得分:26)

实际上pretty easy使用flot生成。

var options = {
     series: {
         bars: {
             show: true,
             barWidth: 15778463000, // 1/2 year in milliseconds
             align: 'center'
         },
     },
     yaxes: {
         min: 0
     },
     xaxis: {
         mode: 'time',
         timeformat: "%y",
         tickSize: [1, "year"],
         autoscaleMargin: .10 // allow space left and right
     }
 };

 $(function() {
     $.plot($('#placeholder'), [[[1230768000*1000, 100], //[seconds * 1000 = milli, y value]
                                [1262304000*1000, 200],
                                [1293840000*1000, 300]]], options);
 });

产地:

enter image description here