1

I am trying to use something like that : If you can give me working example with react and packedbubble it will be very helpful. the issue that I am using react and trying to do something like:

      constructor(props) {
        super(props);
      this.state = {
        options: {
          title: {
            text: 'My chart'
          },
          series: [{
            data: [1, 2, 3]
          }]
        }

      }
      }


        render() {
    return (
   <HighchartsReact highcharts = {Highcharts} options={this.state.options}/>
    );
  }
Vitaly Menchikovsky
  • 7,684
  • 17
  • 57
  • 89

1 Answers1

4

To create packedbubble you have to load highcharts-more module:

require("highcharts/highcharts-more")(Highcharts);

Demo:

Wojciech Chmiel
  • 7,302
  • 1
  • 7
  • 16