Is there any way to link insert a hyperlink to an individual chart element? I have several pie charts that I want to link to each other - so if one chart shows a breakdown of data by regions, clicking on a particular region will link to a second chart that breaks down the data by countries in that region.
I can link the entire chart to a different worksheet through using the following code:
However this only links the entire chart, and not an individual segment or element.
I can link the entire chart to a different worksheet through using the following code:
Code:
ActiveSheet.ChartObjects(1).Activate
ActiveChart.Hyperlinks.Add Anchor:=Selection.ShapeRange.Item(1), Address:="", SubAddress:="'Regions'!A1"
However this only links the entire chart, and not an individual segment or element.