flotchart,在图表比例上禁用小数点

时间:2013-03-25 18:35:01

标签: javascript graph charts scale flot

在我的flotgraphs中,数据集中没有任何项目包含小数点,但在其自动缩放程序中,它有时会决定向我显示中间小数点

我不希望它这样做,无论如何不要那样做吗?

这很重要的原因是因为此数据集中从不存在十进制值,因此没有必要暗示会有或认为它是规模的有用补充

http://jsfiddle.net/gamm/t3Vqh/2/

var dataset = [overdue, open, completed];

var options = {
    series: {
        stack: true,
        bars: {
            show: true
        }
    },
    bars: {
        align: "center",
        horizontal: false,
        barWidth: .8,
        lineWidth: 0
    },
    grid: {
        borderWidth: 0,
        borderColor: null,
        backgroundColor: null,
        labelMargin: 10,
        minBorderMargin: 10
    },
    yaxis: {
        tickColor: "FFFFFF"
    },
    xaxis: {
        tickColor: "FFFFFF",
        ticks: [
            [1, "Public Works"],
            [2, "Sanitation"],
            [3, "Mayor"],
            [4, "L&I"],
            [5, "Police"]
        ]
    },
    legend: {
        position: 'ne',
        show: true
    }
};

$.plot($("#example-section15 #flotcontainer"), dataset, options);

1 个答案:

答案 0 :(得分:19)

使用轴tickDecimals选项,如下所示:

yaxis: {
    tickDecimals: 0
}