如何使用 highcharts 中的状态更改系列的亮度

发布于 2025-01-01 05:38:25 字数 306 浏览 0 评论 0原文

当我使用像这里这样的状态悬停系列时,如何更改系列的亮度我正在更改颜色,但我想更改颜色的亮度。

    plotOptions: {
      series: {
        states: {
            hover: {
                color: 'green'
            },
            select: {
                color: 'blue'
            }
        }   
      }

非常感谢任何帮助...

How can I change brightness of series when I hover the series using states like here I am changing color but I want to change brightness of color.

    plotOptions: {
      series: {
        states: {
            hover: {
                color: 'green'
            },
            select: {
                color: 'blue'
            }
        }   
      }

any help is highly appreciated...

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

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

发布评论

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

评论(2

黯然 2025-01-08 05:38:25

您可以像以前一样更改选择状态的颜色,但您必须使用 :

this.setState(this.state === 'select' ? '' : 'select');

例如在 click 事件中自行添加选择状态。

正如这个问题中所说:
Highchart - 设置线条样式(宽度、颜色...)关于选择

You can change the color on the select state as you did but you have to add the select state yourself using :

this.setState(this.state === 'select' ? '' : 'select');

for example in a click event.

as said in this question :
Highchart - set a line style ( width, color...) on selection

赴月观长安 2025-01-08 05:38:25

您可以使用标准 css 颜色定义来指定您想要的任何颜色,例如“#00FF00”或“rgb(0,200,0)”。

plotOptions: {
  series: {
    states: {
        hover: {
            color: '#00FF00'
        },
        select: {
            color: '#0000FF'
        }
    }   
  }

You can specify any colour you want, using standard css color definitions, e.g. '#00FF00' or 'rgb(0,200,0)'.

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