Create inverted area chart

Description

The following code shows how to create inverted area chart.

Example


<!DOCTYPE html>
<html>
<head>
<script type='text/javascript' src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>
$(function () {<!--   w  ww .ja v a  2 s . c  om-->
    $('#container').highcharts({
        chart: {
            type: 'area',
            inverted: true
        },
        series: [{
            name: 'A',
            data: [3, 4, 3, 5, 4, 10, 12]
        }, {
            name: 'B',
            data: [1, 3, 4, 3, 3, 5, 4]
        }]
    });    
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="min-width: 310px; height: 400px; max-width: 800px; margin: 0 auto"></div>

</body>
</html>

Click to view the demo





















Home »
  highcharts »
    Chart by Type »




Area Chart
Bar Chart
Boxplot Chart
Bubble Chart
Column Chart
Gauge Chart
Line Chart
Pie Chart
Polar Chart
Scatter Chart
Spline Chart