HighCharts - How to create dynamic chart that exports EVERYTHING HighCharts - How to create dynamic chart that exports EVERYTHING ajax ajax

HighCharts - How to create dynamic chart that exports EVERYTHING


yes - its possible and highcharts support things you mentioned here's sample code http://jsfiddle.net/vijaykumarkagne/9c2vqq7q/ of dynamic highchart using json data of file hosted in google drive.

    $.getJSON("https://b943d995d961c8938d74bf398f8748e2b34864c6.googledrive.com/host/0B_i_hw1oG1HeaU9nMWxfTnJZd1k/data.json",{format:"json"},function(result){                    chart = new Highcharts.Chart({        chart: {            zoomType: 'x',            type: 'line',            renderTo: 'container'        },        title: {            text: ' '        },        subtitle: {            text: 'Click and drag in the plot area to zoom in',            x: -20        },        xAxis: {            type: 'datetime',            title: {                text: ' '            }        },        yAxis: {            title: {                text: ' '            }        },                series:[{            name: 'Tokyo',            data: result        }]     });        });
 <script src="https://code.jquery.com/jquery-1.10.2.js"></script>    <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>    <script src="https://b943d995d961c8938d74bf398f8748e2b34864c6.googledrive.com/host/0B_i_hw1oG1HeaU9nMWxfTnJZd1k/dataEmp.json"></script><script src="https://code.highcharts.com/highcharts.js"></script>    <script src="https://code.highcharts.com/modules/drilldown.js"></script><script src="https://code.highcharts.com/modules/exporting.js"></script><body><div id="container"></div></body>