Set plot border width
Description
The following code shows how to set plot border width.
Example
<!--from w ww. j av a 2s. co 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',
plotBorderWidth: 1,
events: {
load: function(){
this.plotBorder.attr({rx: 10, ry: 10})
}
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0]
}]
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px; width: 500px"></div>
</body>
</html>