1

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,

AGamePlayer
  • 7,404
  • 19
  • 62
  • 119

1 Answers1

2
title: {
    text: ''
}

or

title: {
    text: null
}
Jeff Voss
  • 3,637
  • 8
  • 46
  • 71