jquery float x轴标注位置

发布于 2024-12-27 23:45:12 字数 133 浏览 2 评论 0原文

请参阅http://jsfiddle.net/UEePE/1029/

我怎样才能把x-轴到图表顶部而不是图表底部?

please refer to http://jsfiddle.net/UEePE/1029/

How can I put the x-axis to the top of the chart instead at the bottom of the chart?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

呆头 2025-01-03 23:45:12
  xaxis: { postion:"top",...

请参阅:http://jsfiddle.net/diode/7FfMd/2/

  xaxis: { postion:"top",...

see : http://jsfiddle.net/diode/7FfMd/2/

提笔落墨 2025-01-03 23:45:12

您可以将position指定为top

var data = [[-373597200000, 315.71], [-370918800000, 317.45], [-368326800000, 317.50],  [-99968400000, 319.79]]; 

$.plot($("#placeholder"), data, {
        yaxis: {
        },
        xaxis: { mode: "time",
                 ticks: 18,
                 minTickSize: [1, "month"], 
                 tickLength: 1,
                 min: (new Date("2000/01/01")).getTime(),
                 max: (new Date("2001/07/02")).getTime(),
                 position: "top" //<<-------------- will set X axis to top
},
        "lines": {"show": "true"},
        "points": {"show": "true"},
        clickable:true,hoverable: true
});

工作演示

You can specify the position to top.

var data = [[-373597200000, 315.71], [-370918800000, 317.45], [-368326800000, 317.50],  [-99968400000, 319.79]]; 

$.plot($("#placeholder"), data, {
        yaxis: {
        },
        xaxis: { mode: "time",
                 ticks: 18,
                 minTickSize: [1, "month"], 
                 tickLength: 1,
                 min: (new Date("2000/01/01")).getTime(),
                 max: (new Date("2001/07/02")).getTime(),
                 position: "top" //<<-------------- will set X axis to top
},
        "lines": {"show": "true"},
        "points": {"show": "true"},
        clickable:true,hoverable: true
});

Working Demo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文