Apexcharts-自定义棒颜色

发布于 2025-01-19 05:41:10 字数 428 浏览 1 评论 0原文

是否可以自定义柱形图中每个条形的颜色?

这是我使用 React 获得的数据类型:

const [data, setData] = useState([{
    data: [{
        x: 'Apple',
        y: 54,
        color: '#CCCCCC'
    }, {
        x: 'Orange',
        y: 66,
        color: '#FF0000'
    }]
}]);

但是这里的颜色没有应用于图表。

我也尝试过将“分布式”选项设置为 true 。

plotOptions: {
        bar: {
            distributed: true,
        },
    },

Is it possible to customise the colour of each bar in a column chart ?

This is the kind of data I'm having using React:

const [data, setData] = useState([{
    data: [{
        x: 'Apple',
        y: 54,
        color: '#CCCCCC'
    }, {
        x: 'Orange',
        y: 66,
        color: '#FF0000'
    }]
}]);

But the colours here is are not applied to the chart.

I've tried with the 'distributed' option set to true as well.

plotOptions: {
        bar: {
            distributed: true,
        },
    },

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

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

发布评论

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

评论(1

云之铃。 2025-01-26 05:41:11

有两种方法可以实现这一目标,您非常接近他们。

1。将颜色传递给

您尝试过的数据非常相似,但是使用fillcolor作为密钥。

data: [{
        x: 'Apple',
        y: 54,
        fillColor: '#CCCCCC'
    }, {
        x: 'Orange',
        y: 66,
        fillColor: '#FF0000'
    }]

2。 分布式选项

要为此起作用,它需要嵌套在options对象中:

options: {
  plotOptions: {
    bar: {
      distributed: true
    }
  }
},

如果这不起作用,则值得确保那里' t任何无效的属性(例如color)可能引起问题。

我敢肯定,您已经发现了一些示例,这些示例在 apexcharts docs

There are two ways to achieve this, you're very close to both of them.

1. Pass the color with the data

Very similar to what you've tried, but use fillColor as the key instead.

data: [{
        x: 'Apple',
        y: 54,
        fillColor: '#CCCCCC'
    }, {
        x: 'Orange',
        y: 66,
        fillColor: '#FF0000'
    }]

2. distributed option

For this to work, it needs to be nested inside the options object:

options: {
  plotOptions: {
    bar: {
      distributed: true
    }
  }
},

If this doesn't work, it's worth making sure that there aren't any invalid attributes (e.g. color) somewhere that might be causing issues.

As I'm sure you've already discovered, there are some examples of various ways to use colors in a column chart in the ApexCharts docs.

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