I'm just going to hardcode it in using html that is around the graph, I don't want to use the built in.
I don't see a "disable: true" option in the API.
Can anybody help me out here.
How do you disable the title / subtitle in highcharts?
(if you simply leave the text blank it still carves out a whitespace in that spot where the title is, i'd like to not have this happen)
For those that use Typescript you can set the Highcharts.TitleOptions to hide the chart title.
It´s simple... Only set the title´s text to null. Like this
});
see@APIreference: http://api.highcharts.com/highcharts#title.text
From the highcharts doc:
fiddle: http://jsfiddle.net/daub10dr/
This is a bit of a hack but you can also try that:
Set the text field to null
From the documentation at http://api.highcharts.com/highcharts#title.text
You can always do this:
That worked for me :-)
note: this answer was for
version 2.*
, for newer versions there are better answers.