JQuery-Flot:如何为 Y 轴添加文本标签,为 X 轴添加日期标签?

发布于 2024-12-18 13:32:46 字数 82 浏览 1 评论 0原文

所以基本上,我在 JQuery-Flot 中有一个测试图,而不是普通的整数轴。我需要对 Y 轴使用文本标签,对 X 轴使用日期标签。有谁知道该怎么做?

So basically, I have a test graph in JQuery-Flot, and instead of the normal integer axis. I need to use text label for the Y-axis and date label for the X-axis. Do anyone know how to do this?

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

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

发布评论

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

评论(1

知你几分 2024-12-25 13:32:46

flot api 涵盖了这两种情况(在“自定义轴”下)。对于 x 轴,您需要使用“时间”选项。对于 y 轴刻度标签,您需要指定刻度选项(每个位置应显示哪些文本):

ticks: [[0, "zero"], [1.2, "one mark"], [2.4, "two marks"]] 

The flot api covers both of these cases (under "Customizing the axes"). For the x-axis you'll want to use the "time" option. For the y-axis tick labels you'll want to specify the ticks option (what text should appear at each location):

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