1

我正在使用 flot 库来绘制图表,我最多只能使用它绘制几秒钟

xaxis: {
            mode: "time",
            timeformat: "%y/%m/%d-%H:%M:%S"
        }

我还想在 x-axis 上绘制毫秒。可能吗 ?任何帮助/建议将不胜感激。

4

1 回答 1

1

目前,不,您必须提供自己的 tickFormatter,如下所示:

xaxis: {
    mode: "time",
    tickFormatter: function(value, axis) {
        return value % 1000;
    }
}

不过,我们确实应该为此添加格式说明符;也许是 %f,比如 Python。你绝对应该在 Github 上为此打开一个增强问题。

于 2013-04-26T11:52:40.750 回答