Align subtitle to right bottom
Description
The following code shows how to align subtitle to right bottom.
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 () {<!--from w w w . java 2 s. c o m-->
$('#container').highcharts({
chart: {
type: 'area',
},
subtitle: {
text: 'subtitle',
floating: true,
align: 'right',
verticalAlign: 'bottom',
y: 15
},
series: [{
name: 'John',
data: [0, 1, 4, 4, 5, 2, 3, 7]
}, {
name: 'Jane',
data: [1, 0, 3, 1, 3, 1, 2, 1]
}]
});
});
</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>