Fill area chart with transparent by fillOpacity
Description
The following code shows how to fill area chart with transparent by fillOpacity.
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 w w . ja v a 2 s. com-->
$('#container').highcharts({
chart: {
type: 'area',
inverted: true
},
plotOptions: {
area: {
fillOpacity: 0.5
}
},
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>