1

I have a simple chart with six data objects, three lines and three bubbles. Each line shares the name with its corresponding bubble. How can I join each pair so that I can have an onClick event on either series to make them disappear?

I'm also not sure why disabling the legend is overriden:

  plotOptions: {
    showLegend: false
  }

JSfiddle

ZekeDroid
  • 7,089
  • 5
  • 33
  • 59

1 Answers1

1

Have you seen this question? Maybe it can be useful to you.

But for hiding the legend I didn't find the showLegend property. To hide the legend there is a property of legend - enabled:

legend: {
      enabled: false
}
Community
  • 1
  • 1
SashkaCosmonaut
  • 413
  • 8
  • 18