Change chart background in button click event
Description
The following code shows how to change chart background in button click event.
Example
<!-- www . j av a2 s . c o m-->
<!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 () {
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>