Set chart background
Description
The following code shows how to set chart background.
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 () {<!-- ww w . j a va 2s . com-->
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: 'yellow'
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0]
}]
});
$("#b").click(function(){
chart.plotBackground.attr({
fill: 'white'
});
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<button id="b"> change! </button>
<div id="container" style="height: 400px; width: 500px"></div>
</body>
</html>