gpt4 book ai didi

javascript - Highcharts 中选定列的不同边框

转载 作者:数据小太阳 更新时间:2023-10-29 06:02:40 25 4
gpt4 key购买 nike

我在我的应用程序中使用了 highchart 的柱形图。

我有柱形图。当用户选择图表中的一列时,所选列应以不同的边框颜色和不同的宽度显示。

这是代码片段

$(function () {
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
type: 'column'
},
xAxis: {
categories: [
'Jan', 'Feb', 'Mar',
'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep',
'Oct', 'Nov', 'Dec'
]
},
plotOptions: {
series: {
allowPointSelect: true,
marker: {
states: {
select: { lineWidth: 10 }
}
}
}
},
series: [{
data: [
29.9, 71.5, 106.4,
129.2, 144.0, 176.0,
135.6, 148.5, 216.4,
194.1, 95.6, 54.4
]
}]
});
});

Code snippet

当我选择列时,颜色变为灰色。我希望它们保持不变。

最佳答案

你的意思是这样的:

plotOptions: {
series: {
allowPointSelect: true,
states: {
select: {
color: null,
borderWidth:5,
borderColor:'Blue'
}
}
}
},

DEMO

关于javascript - Highcharts 中选定列的不同边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15085440/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com