AGamePlayer
AGamePlayer

Reputation: 7736

How do I completely hide the chart title in a HighCharts chart?

I notice that:

  title: {
  text: title,
  }

Can customise the content of the title but what if I need a chart without title? What should I do? I try to remove those code above and I got a "Chart Title" instead of just having nothing - which is what I expected.

Thanks,

Upvotes: 1

Views: 5061

Answers (1)

Jeff Voss
Jeff Voss

Reputation: 3695

title: {
    text: ''
}

or

title: {
    text: null
}

Upvotes: 2

Related Questions