Javascript examples for highcharts:Column Chart
Have big point in a 3d series column chart
<html> <head> <title>Highcharts Demo</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script> <style id="compiled-css" type="text/css"> #container {/*from ww w .ja v a2 s.c o m*/ height: 400px; min-width: 310px; max-width: 800px; margin: 0 auto; } </style> <script type="text/javascript"> $(function () { $('#container').highcharts({ chart: { type: 'column', margin: 75, options3d: { enabled: true, alpha: 15, beta: 15, depth: 110 } }, plotOptions: { column: { depth: 40, stacking: true, grouping: false, groupZPadding: 10 } }, series: [{ data: [1, 2, 4, 3, 2, 4], stack: 0 }, { data: [5, 6, 3, 4, 1, 2], stack: 0 }, { data: [7, 9, 8, 7, 5, 999], stack: 1 }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/5.0.4/highcharts.js"></script> <script src="https://code.highcharts.com/5.0.4/highcharts-3d.js"></script> <div id="container" style="height: 400px"></div> </body> </html>