Highcharts export

by Vamsi krishna mannem

HTML

<script src="https://code.highcharts.com/highcharts.js"></script>
<script type="text/javascript" src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/offline-exporting.js"></script>

<div id="container"></div>

CSS

#container {
  min-width: 310px;
  max-width: 800px;
  margin: 0 auto;
}

JavaScript

Highcharts.chart('container', {
   legend: {
     useHTML: true,
     labelFormatter: function() {
       var img = '<img src = "https://www.tutorialbrain.com/editor_html/img/Vector-based_2D_Example.svg" width = "20px" height = "20px">';
       return img;
     }
   },
   series: [{
     data: [1, 3, -2, -4]
   }]
 });