Javascript examples for highcharts:Chart Title
show download menu when removing title
<html> <head> <title>basic</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <script type="text/javascript" src="https://code.jquery.com/jquery-1.6.1.js"></script> <script type="text/javascript"> $(function(){/*from ww w. j a v a 2 s .c o m*/ var chart = new Highcharts.Chart({ chart: { renderTo:'container', borderWidth:1, plotBorderWidth:1 }, title:{ text:null }, subTitle:{ text:null }, credits:{enabled:false}, legend:{ }, plotOptions: { series: { shadow:false, borderWidth:0, } }, xAxis:{ lineColor:'#999', lineWidth:1, tickColor:'#666', tickLength:3, title:{ text:'X Axis Title' } }, yAxis:{ lineColor:'#999', lineWidth:1, tickColor:'#666', tickWidth:1, tickLength:3, gridLineColor:'#ddd', title:{ text:'Y Axis Title', rotation:0, margin:50, } }, series: [{ data: [7,12,16,32,60] }] }); }); </script> </head> <body> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/highcharts-more.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <div id="container" style="height:400px;"></div> </body> </html>