How to add a http link in chart

hi,

I am trying basic bar chart.

http://plot.ly/javascript/pie-charts/

Is it possible I can add a http link on each label?
like below: 
var data = [{
  values: [19, 26, 55],
  labels: ['Residential', 'Non-Residential', 'Utility'],
  type: 'pie'
}];
1 Like

I need link on other chart also. Looking for some common solution.

Here’s a start: http://codepen.io/etpinard/pen/yamvBM

Thanks a lot for the code sample:)