Sha256: 804e0d066361f00d3ccb037ea6b98b5a2771ccc4c39195cdc4419c35858eface
Contents?: true
Size: 1.66 KB
Versions: 46
Compression:
Stored size: 1.66 KB
Contents
<!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://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script> <script type="text/javascript"> $(function () { window.chart = new Highcharts.Chart({ chart: { renderTo: 'container', polar: true, type: 'line' }, title: { text: 'Budget vs spending', x: -80 }, pane: { size: '80%' }, xAxis: { categories: ['Sales', 'Marketing', 'Development', 'Customer Support', 'Information Technology', 'Administration'], tickmarkPlacement: 'on', lineWidth: 0 }, yAxis: { gridLineInterpolation: 'polygon', lineWidth: 0, min: 0 }, tooltip: { shared: true, valuePrefix: '$' }, legend: { align: 'right', verticalAlign: 'top', y: 100, layout: 'vertical' }, series: [{ name: 'Allocated Budget', data: [43000, 19000, 60000, 35000, 17000, 10000], pointPlacement: 'on' }, { name: 'Actual Spending', data: [50000, 39000, 42000, 31000, 26000, 14000], pointPlacement: 'on' }] }); }); </script> </head> <body> <script src="../../js/highcharts.js"></script> <script src="../../js/highcharts-more.js"></script> <script src="../../js/modules/exporting.js"></script> <div id="container" style="width: 700px; height: 400px; margin: 0 auto"></div> </body> </html>
Version data entries
46 entries across 23 versions & 1 rubygems