圆数x轴Jquery flot图

时间:2009-12-20 12:29:04

标签: jquery graph flot

我想对flot图的x轴上的值进行舍入(0位小数)。 x-axix显示周数。有谁知道怎么做?

http://www.snowcams.eu/snowcondition/saas%20fee/998

1 个答案:

答案 0 :(得分:13)

以下是您的解决方案(这可以在插件API Documentation中找到)

$.plot(
    $("#placeholder"),
    [{data:d1, lines:{show: true}, points:{show: true}, label:"Mountain"}],
    {xaxis: {tickSize:1, tickDecimals:0 }}
);