1

我期待 flot v.0.7 出现非常奇怪的问题。我有多个轴,配置如下:

var plotData = [
    { data: data1 },
    { data: data2, yaxis: 2 }];

var options = {
    selection: { mode: "x" },
    xaxis: { mode: "time" },
    yaxis: [
      { min: 0 },
      {
        min: 0, 
position: "right",
zoomRange: false,
alignTicksWithAxis: 1,
tickFormatter: formatter,
      }
    ],
    grid: { markings: weekendAreas },
    zoom: { interactive: true },
    grid: {
        clickable: true,
        hoverable: true,
        borderWidth: 1,
    },
    legend: { show: false },
};

var plot = $jq.plot(container, plotData, options);

但我得到的是两个 Y 系列都位于右侧(不仅是第二个 Y 系列)。我的第二个系列刻度没有格式化程序。如果缩放,Y 值可以小于零。如果我不对 yaxis 使用数组类型并将其定义为只有一个系列,那么一切正常。我究竟做错了什么?

4

1 回答 1

7

而不是yaxis: [ ... ],使用yaxes: [ ... ].

有关更多信息,请参阅文档中标题为Multiple Axes的部分。

于 2012-09-22T13:56:30.020 回答