关于轴上标签的问题

发布于 2024-11-08 16:37:31 字数 292 浏览 4 评论 0原文

如何删除标签并保留 Y 轴?

我不想删除轴,只想删除标签。基本上是没有文本或数字的 y 轴

在此处输入图像描述

chart1.addAxis("y", {
                labels: false,
                vertical : true,
                leftBottom : true,

            });

How can I remove the labels and keep the Y axis?

I don't want remove the axis, only the labels. Basically the y axis without text or numbers

enter image description here

chart1.addAxis("y", {
                labels: false,
                vertical : true,
                leftBottom : true,

            });

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

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

发布评论

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

评论(1

最终幸福 2024-11-15 16:37:31

你能尝试这样吗:

addAxis("y", {
                vertical: true,
                fixLower: "major",
                fixUpper: "major",
        labelFunc:function(){
          return " ";
             }
         });

请。不要删除引号内的一个空格。

或者这里有一篇文章展示了如何从图表中删除轴。
在 dojox.charting 中隐藏 x 轴

can you try like this:

addAxis("y", {
                vertical: true,
                fixLower: "major",
                fixUpper: "major",
        labelFunc:function(){
          return " ";
             }
         });

Pls. Dont remove the one single space inside the quotes.

or here is a post which shows how to delete an axis from the chart.
Hiding x Axis in dojox.charting

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