我是JS图表库的新手,我已经开始使用Highcharts了。我有这样的场景,我无法找到一种方法来做到这一点。
场景:我有一个条形图,显示员工多年来的转职情况。另外,我有一个单独的饼图,显示不同部门的营业额百分比。但是当我点击一年(条形图上的一列)时,饼图应该更改为仅显示所选年份的不同部门的员工流动率。
我在不同的地方搜索,我无法得到解决方案。有人可以帮我弄这个吗?
我遇到过这个问题,你只需要将xAxis或yAxis与下面的系列链接起来:
yAxis:{
id: 'voltage-axis', // ====This is the thing you need
title: {
text: 'Voltage'
},
max:250,
min:0,
lineWidth: 2,
lineColor: '#08F',
opposite: true
}
series: [{
yAxis: 'voltage-axis', // Link here that yAxis id
name: 'Rainfall',
type: 'column',
yAxis: 1,
data: [49.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1,
95.6, 54.4],
tooltip: {
valueSuffix: ' mm'
}
}
根据您的要求更改代码。我希望这能帮到您。