如何使用 highcharts 中的状态更改系列的亮度
当我使用像这里这样的状态悬停系列时,如何更改系列的亮度我正在更改颜色,但我想更改颜色的亮度。
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以像以前一样更改选择状态的颜色,但您必须使用 :
例如在 click 事件中自行添加选择状态。
正如这个问题中所说:
Highchart - 设置线条样式(宽度、颜色...)关于选择
You can change the color on the select state as you did but you have to add the select state yourself using :
for example in a click event.
as said in this question :
Highchart - set a line style ( width, color...) on selection
您可以使用标准 css 颜色定义来指定您想要的任何颜色,例如“#00FF00”或“rgb(0,200,0)”。
You can specify any colour you want, using standard css color definitions, e.g. '#00FF00' or 'rgb(0,200,0)'.