Flot 中轴的逗号分隔数字

发布于 2024-11-06 04:45:51 字数 63 浏览 2 评论 0原文

有没有办法让 Flot 使轴编号以逗号分隔?

例如,用 1,000,000 代替 1000000

Is there a way to have Flot make axis numbers be comma-separated?

So for example, instead of 1000000 have 1,000,000

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

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

发布评论

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

评论(1

半步萧音过轻尘 2024-11-13 04:45:51

您可以通过使用轴的tickFormatter 属性来做到这一点。

xaxis: {
  tickFormatter: function(val, axis) {
    // insert comma logic here and return the string
  }
}

资料来源:http://people.iola.dk/olau/flot/API.txt(在“自定义轴”下)

此页面具有用逗号格式化数字的功能:http://www.mredkj.com/javascript/nfbasic.html

例如在 y 轴上:

    $(function () {  
            var plotarea = $("#plotarea");
            $.plot( plotarea , [data], {
                            xaxis: {mode: "time", timeformat: "%m/%d %H:%M:%S"},
                            yaxis: {tickFormatter: function numberWithCommas(x) {
                                      return x.toString().replace(/\B(?=(?:\d{3})+(?!\d))/g, ",");
                                }
                            },
                            points: { show: true },
                            lines: { show: true, fill: true }

                    } );
    });

You can do that by using the tickFormatter property of the axis.

xaxis: {
  tickFormatter: function(val, axis) {
    // insert comma logic here and return the string
  }
}

Source: http://people.iola.dk/olau/flot/API.txt (under "Customizing the axes")

This page has a function to format numbers with commas: http://www.mredkj.com/javascript/nfbasic.html

For Example on the yaxis:

    $(function () {  
            var plotarea = $("#plotarea");
            $.plot( plotarea , [data], {
                            xaxis: {mode: "time", timeformat: "%m/%d %H:%M:%S"},
                            yaxis: {tickFormatter: function numberWithCommas(x) {
                                      return x.toString().replace(/\B(?=(?:\d{3})+(?!\d))/g, ",");
                                }
                            },
                            points: { show: true },
                            lines: { show: true, fill: true }

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