左/右对齐图表列

发布于 2024-12-27 15:11:53 字数 242 浏览 1 评论 0原文

我正在尝试将图表中的列与左侧对齐。默认情况下它们位于中间。

我在 API 文档中找不到任何有关此内容的信息。

在此处输入图像描述

这里是一个 jsFiddle 测试。

I'm trying to align columns to the left in my chart. By default they are in the middle.

I can't find anything about this in the API documentation.

enter image description here

Here is a jsFiddle test.

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

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

发布评论

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

评论(2

三岁铭 2025-01-03 15:11:53

在 highcharts api 中,您检查过组填充功能吗?
http://www.highcharts.com/ref/#plotOptions-column--groupPadding

plotOptions: {
    series: {
        groupPadding: 0
    }
},

如果将 groupPadding 设置为 0 时列显得太宽,
你仍然可以使用 pointPadding。 http://www.highcharts.com/ref/#plotOptions-column--pointPadding

(如果这不符合您的需求,我想我有点困惑,
因为我不明白图表列如何左对齐,
然后在右边有一个大的空白,就可以了
精心设计的图表...)

In the highcharts api, have you examined the group padding feature?
http://www.highcharts.com/ref/#plotOptions-column--groupPadding

plotOptions: {
    series: {
        groupPadding: 0
    }
},

If the columns appear too wide when you set the groupPadding to 0,
you can still play with the pointPadding. http://www.highcharts.com/ref/#plotOptions-column--pointPadding

(If that doesn't fit your needs, I guess I'm a bit perplexed,
because I don't see how having chart columns aligned to the left,
then followed by a big blank space on the right, would make
for a well-designed chart...)

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