我想对flot图的x轴上的值进行舍入(0位小数)。 x-axix显示周数。有谁知道怎么做?
答案 0 :(得分:13)
以下是您的解决方案(这可以在插件API Documentation中找到)
$.plot(
$("#placeholder"),
[{data:d1, lines:{show: true}, points:{show: true}, label:"Mountain"}],
{xaxis: {tickSize:1, tickDecimals:0 }}
);