I'am stuck in the problem of showing multiple pie-charts using High charts.
What I have to achieve is,
I have created three separated pie-charts using highcharts and overlapped them using my custom CSS.
I put all charts in a div and write css as follows.
#homepage-charts {
position: relative;
}
#inner-chart, #center-chart, #outer-chart {
position: absolute;
top: 0;
left: 0;
div svg rect {
fill: none !important;
}
}
#inner-chart {
z-index: 4;
}
#center-chart {
z-index: 3;
}
#outer-chart {
z-index: 2;
}
Finally, it is come like,
The problem is, when I create like above, I couldn't be able to click or hover the charts which are under the first chart.
Is there any way to trigger click or hover the charts behind the first one?
or any high charts functionality that couldn't find to show as above?