Toggle navigation Highcharts
  • About Us
    • About Us
    • Blog
    • Contact
  • Plugins
  • Shop
  • Home
  • Demo
    • Highcharts demos
    • Highstock demos
    • Highmaps demo
    • Customer showcase
  • Docs
    • General Documentation
    • Highcharts API Reference
    • Highstock API Reference
    • Highmaps API Reference
    • Compatibility
    • Changelog
  • Support
    • Support
    • Roadmap
    • Download
    • Forum
  • Products
    • Highcharts
    • Highstock
    • Highmaps
    • Highcharts Cloud
  • About Us
    • About Us
    • Blog
    • Contact
  • Plugins
  • Shop

Highcharts Demos › Area range

Default Dark Unica Sand Signika Grid Light
  • Line charts
    • Basic line
    • Ajax loaded data, clickable points
    • With data labels
    • Time series, zoomable
    • Spline with inverted axes
    • Spline with symbols
    • Spline with plot bands
    • Time data with irregular intervals
    • Logarithmic axis
  • Area charts
    • Basic area
    • Area with negative values
    • Stacked area
    • Percentage area
    • Area with missing points
    • Inverted axes
    • Area-spline
    • Area range
    • Area range and line
    • Sparkline charts
  • Column and bar charts
    • Basic bar
    • Stacked bar
    • Bar with negative stack
    • Basic column
    • Column with negative values
    • Stacked column
    • Stacked and grouped column
    • Stacked percentage column
    • Column with rotated labels
    • Column with drilldown
    • Fixed placement columns
    • Data defined in a HTML table
    • Column range
  • Pie charts
    • Pie chart
    • Pie with legend
    • Donut chart
    • Semi circle donut
    • Pie with drilldown
    • Pie with gradient fill
    • Pie with monochrome fill
  • Scatter and bubble charts
    • Scatter plot
    • Bubble chart
    • 3D bubbles
  • Combinations
    • Synchronized charts
    • Column, line and pie
    • Dual axes, line and column
    • Multiple axes
    • Histogram
    • Scatter with regression line
    • Meteogram
    • Advanced timeline
  • Dynamic charts
    • Spline updating each second
    • Click to add a point
    • Master-detail chart
    • Update options after render
    • Responsive chart
  • 3D charts
    • 3D column
    • 3D column with null and 0 values
    • 3D column with stacking and grouping
    • 3D pie
    • 3D donut
    • 3D scatter chart
  • Gauges
    • Angular gauge
    • Solid gauge
    • Activity gauge
    • Clock
    • Gauge with dual axes
    • VU meter
  • Heat and tree maps
    • Heat map
    • Large heat map
    • Tree map with color axis
    • Tree map with levels
    • Large tree map
  • More chart types
    • Polar chart
    • Spiderweb
    • Wind rose
    • Box plot
    • Error bar
    • Waterfall
    • Funnel chart
    • Pyramid chart
    • Polygon series
    • General drawing
Hide Menu More...

Area range

View options
$(function () {
    $.getJSON('https://www.highcharts.com/samples/data/jsonp.php?filename=range.json&callback=?', function (data) {

        $('#container').highcharts({

            chart: {
                type: 'arearange',
                zoomType: 'x'
            },

            title: {
                text: 'Temperature variation by day'
            },

            xAxis: {
                type: 'datetime'
            },

            yAxis: {
                title: {
                    text: null
                }
            },

            tooltip: {
                crosshairs: true,
                shared: true,
                valueSuffix: '°C'
            },

            legend: {
                enabled: false
            },

            series: [{
                name: 'Temperatures',
                data: data
            }]

        });
    });

});
Edit in jsFiddle
© 2016 Highcharts. All rights reserved.