| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 | <!DOCTYPE HTML><html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">		<meta name="viewport" content="width=device-width, initial-scale=1">		<title>Highcharts Example</title>		<style type="text/css">#container {	min-width: 320px;	max-width: 600px;	margin: 0 auto;}		</style>	</head>	<body><script src="https://code.jquery.com/jquery-3.1.1.min.js"></script><script src="../../code/highcharts.js"></script><script src="../../code/highcharts-more.js"></script><script src="../../code/modules/exporting.js"></script><div id="container"></div><button id="plain">Plain</button><button id="inverted">Inverted</button><button id="polar">Polar</button>		<script type="text/javascript">var chart = Highcharts.chart('container', {    title: {        text: 'Chart.update'    },    subtitle: {        text: 'Plain'    },    xAxis: {        categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']    },    series: [{        type: 'column',        colorByPoint: true,        data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4, 194.1, 95.6, 54.4],        showInLegend: false    }]});$('#plain').click(function () {    chart.update({        chart: {            inverted: false,            polar: false        },        subtitle: {            text: 'Plain'        }    });});$('#inverted').click(function () {    chart.update({        chart: {            inverted: true,            polar: false        },        subtitle: {            text: 'Inverted'        }    });});$('#polar').click(function () {    chart.update({        chart: {            inverted: false,            polar: true        },        subtitle: {            text: 'Polar'        }    });});		</script>	</body></html>
 |