| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 | 
							- <!DOCTYPE HTML>
 
- <html>
 
- 	<head>
 
- 		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
- 		<title>Highcharts Example</title>
 
- 		<script type="text/javascript" src="http://cdn.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
 
- 		<style type="text/css">
 
- ${demo.css}
 
- 		</style>
 
- 		<script type="text/javascript">
 
- $(function () {
 
-     $('#container').highcharts({
 
-         chart: {
 
-             type: 'column'
 
-         },
 
-         title: {
 
-             text: 'Efficiency Optimization by Branch'
 
-         },
 
-         xAxis: {
 
-             categories: [
 
-                 'Seattle HQ',
 
-                 'San Francisco',
 
-                 'Tokyo'
 
-             ]
 
-         },
 
-         yAxis: [{
 
-             min: 0,
 
-             title: {
 
-                 text: 'Employees'
 
-             }
 
-         }, {
 
-             title: {
 
-                 text: 'Profit (millions)'
 
-             },
 
-             opposite: true
 
-         }],
 
-         legend: {
 
-             shadow: false
 
-         },
 
-         tooltip: {
 
-             shared: true
 
-         },
 
-         plotOptions: {
 
-             column: {
 
-                 grouping: false,
 
-                 shadow: false,
 
-                 borderWidth: 0
 
-             }
 
-         },
 
-         series: [{
 
-             name: 'Employees',
 
-             color: 'rgba(165,170,217,1)',
 
-             data: [150, 73, 20],
 
-             pointPadding: 0.3,
 
-             pointPlacement: -0.2
 
-         }, {
 
-             name: 'Employees Optimized',
 
-             color: 'rgba(126,86,134,.9)',
 
-             data: [140, 90, 40],
 
-             pointPadding: 0.4,
 
-             pointPlacement: -0.2
 
-         }, {
 
-             name: 'Profit',
 
-             color: 'rgba(248,161,63,1)',
 
-             data: [183.6, 178.8, 198.5],
 
-             tooltip: {
 
-                 valuePrefix: '$',
 
-                 valueSuffix: ' M'
 
-             },
 
-             pointPadding: 0.3,
 
-             pointPlacement: 0.2,
 
-             yAxis: 1
 
-         }, {
 
-             name: 'Profit Optimized',
 
-             color: 'rgba(186,60,61,.9)',
 
-             data: [203.6, 198.8, 208.5],
 
-             tooltip: {
 
-                 valuePrefix: '$',
 
-                 valueSuffix: ' M'
 
-             },
 
-             pointPadding: 0.4,
 
-             pointPlacement: 0.2,
 
-             yAxis: 1
 
-         }]
 
-     });
 
- });
 
- 		</script>
 
- 	</head>
 
- 	<body>
 
- <script src="http://cdn.hcharts.cn/highcharts/highcharts.js"></script>
 
- <script src="http://cdn.hcharts.cn/highcharts/modules/exporting.js"></script>
 
- <div id="container" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
 
- 	</body>
 
- </html>
 
 
  |