Home
Tutorials
Microsoft Technologies Tutorials
Java Programming Tutorials
Web Designing Tutorials
Script Programming Tutorials
Database Programming Tutorials
Mobile Technologies Tutorials
Other Programming Tutorials
Examples
Articles
Tools
News
Highcharts Area Range Chart Example
Keywords : How to create area range chart using highcharts with example, Highcharts area range chart using jquery, Area range chart using highcharts with example
Example
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Highcharts Area Range chart</title> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/highcharts-more.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <script type="text/javascript"> $(function () { var chartype = { type: 'arearange', zoomType: 'x' } var chartitle = { text: 'Temperature variation by day' } var chartxaxis = { type: 'datetime' } var chartyaxis = { title: { text: null } } var chartooltip = { crosshairs: true, shared: true, valueSuffix: '°C' } var chartlegends = { enabled: false } $.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=range.json&callback=?', function (data) { $('#container').highcharts({ chart: chartype, title: chartitle, xAxis: chartxaxis, yAxis: chartyaxis, tooltip: chartooltip, legend: chartlegends, series: [{ name: 'Temperatures', data: data }] }); }); }); </script> </head> <body> <div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div> </body> </html>
Click Here to See Result
Result
Previous
Next