Is there a way to disable the Title and Subtitle in Highcharts?

后端 未结 14 770
伪装坚强ぢ
伪装坚强ぢ 2020-12-25 09:04

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.

14条回答
  •  不知归路
    2020-12-25 09:56

    I prefer this method :

    title: {
        text: '',
        style: {
            display: 'none'
        }
    },
    subtitle: {
        text: '',
        style: {
            display: 'none'
        }
    },
    

提交回复
热议问题