Client Side Exporting In HighChart

In a normal case the data of your chart is being sent to an external server which is http://export.highcharts.com/. But if your product is already in a production environment, none of your clients will agree with the idea of sending their data to any third party server. Am I right? To overcome this, HighChart has given an option called offline-exporting. Here we will discuss that. I hope you will like this.

Background

For the past few months, I have been working with a project where I use HighChart to manipulate the data and show it as Charts. Now the problem is, while exporting the data, the entire data was going to the HighChart server that is http://export.highcharts.com/. I wanted to get rid of this. So I used the option client side exporting by adding one extra JavaScript file https://code.highcharts.com/modules/offline-exporting.js.

Using the code

First we will populate the chart. For that you must add the needed references as follows.

  1. <script src="https://code.jquery.com/jquery-2.2.4.min.js""></script>  
  2. <script src="https://code.highcharts.com/highcharts.js"></script>  
  3. <script src="https://code.highcharts.com/modules/exporting.js"></script>  
Now add the chart configuration as follows.
  1. $(function()   
  2.   {  
  3.     $('#myChart').highcharts  
  4.     ({  
  5.         credits:   
  6.         {  
  7.             enabled: false  
  8.         },  
  9.         exporting:  
  10.       {  
  11.             chartOptions:  
  12.         {  
  13.                 plotOptions:   
  14.           {  
  15.                     series:   
  16.             {  
  17.                         dataLabels:  
  18.               {  
  19.                             enabled: true  
  20.                         }  
  21.                     }  
  22.                 }  
  23.             },  
  24.             scale: 3  
  25.         },  
  26.         title:   
  27.       {  
  28.             text: 'My blog vistor count for a week'  
  29.         },  
  30.         
  31.         subtitle:  
  32.       {  
  33.             text: 'Monday to Sunday'  
  34.         },  
  35.         chart:  
  36.       {  
  37.             type: 'area'  
  38.         },  
  39.         xAxis:   
  40.       {  
  41.             categories: ['Mon''Tue''Wed''Thu''Fri''Sat',  
  42.                 'Sun'  
  43.             ]  
  44.         },  
  45.         series: [  
  46.           {  
  47.             name: 'Visitor Count',  
  48.             data: [1005, 558, 1467, 707, 1289, 867, 543]  
  49.         }]  
  50.     });  
  51. });  
Now if you run your application, you can see a chart as follows. 

High Chart

High Chart

Now it is time to check the exporting. If you click on export icon on the right top corner, you will be given options to choose like on which format you need to export the data. Just click on anything you wish. You can see that the data is being sent to the server http://export.highcharts.com/ in the top left side. To overcome this, you need to add a reference of the file called offline-exporting.js.

  1. <script src="https://code.highcharts.com/modules/offline-exporting.js"></script>  
That’s all. You are done.

Please note that this feature is not supported in browser IE 8, So if you load this chart in any unsupported browser, the module will fall back to the export server. This can be handled with the optionfallbackToExportServer: false. You need to set this option in your exporting settings as follows.

  1. exporting:   
  2. {  
  3.     chartOptions:   
  4.   {  
  5.         plotOptions:   
  6.     {  
  7.             series:   
  8.       {  
  9.                 dataLabels:   
  10.         {  
  11.                     enabled: true  
  12.                 }  
  13.             }  
  14.         }  
  15.     },  
  16.     scale: 3,  
  17.     fallbackToExportServer: false  
  18. }  
In Internet Explorer, it requires canvg library to export the chart to PNG format. But you don’t need to worry about this file. This will be automatically downloaded on demand by the system. 

Reference

Conclusion

Did I miss anything that you may think is needed? Did  you find this post useful? I hope you liked this article. Please share with me your valuable suggestions and feedback.

Your turn. What do you think?

A blog isn’t a blog without comments, but do try to stay on topic. If you have a question unrelated to this post, you’re better off posting it on C# Corner, Code Project, Stack Overflow, Asp.Net Forum instead of commenting here. Tweet or email me a link to your question there and I’ll definitely try to help if I can.

Please see this article in my blog here.

Demo

Please see the demo here.


Similar Articles