It's simple ... Just set the title text to null. Like this
$(function () { $('#container').highcharts({ xAxis: { categories: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'] }, title: { text: null }, series: [{ 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] }] });
});
see @APIreference: http://api.highcharts.com/highcharts#title.text
aspadacio Jul 25 '14 at 14:17 2014-07-25 14:17
source share