Flot 中一个系列的多轴

发布于 2024-11-17 21:28:36 字数 42 浏览 3 评论 0原文

Flot 中是否可以有两个轴且只有一个数据系列?

谢谢

Is it possible to have two axis with only one data series in Flot?

Thanks

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

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

发布评论

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

评论(1

饭团 2024-11-24 21:28:36

是:https://www.google.com/search?q=flot+multiple +axes

  1. 多轴 - Flot 示例

    函数 doPlot(位置) {
        $.plot($("#placeholder"),
        [ { data: oilprices, label: "油价 ($)" },
          { data: Exchangerates, label: "美元/欧元汇率", yaxis: 2 }],
            { 
                xaxes: [ { 模式: '时间' } ],
                亚克斯:[{分钟:0},
                {
                // 如果我们在右边则对齐
                alignTicksWithAxis:位置==“右”? 1:空,
                位置: 位置,
                刻度格式化程序:euroFormatter
                }],
            图例:{ 位置:'sw' }
        });
    }
    
    doPlot("右");
    
    $("按钮").click(函数() {
        doPlot($(this).text());
    });
    
  2. 教程:Flot –如何创建具有多个轴的图表

Yes: https://www.google.com/search?q=flot+multiple+axes

  1. Multiple axes - Flot Example

    function doPlot(position) {
        $.plot($("#placeholder"),
        [ { data: oilprices, label: "Oil price ($)" },
          { data: exchangerates, label: "USD/EUR exchange rate", yaxis: 2 }],
            { 
                xaxes: [ { mode: 'time' } ],
                yaxes: [ { min: 0 },
                {
                // align if we are to the right
                alignTicksWithAxis: position == "right" ? 1 : null,
                position: position,
                tickFormatter: euroFormatter
                } ],
            legend: { position: 'sw' }
        });
    }
    
    doPlot("right");
    
    $("button").click(function () {
        doPlot($(this).text());
    });
    
  2. Tutorial: Flot – How to Create Charts with Multiple Axes

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