score:2

Accepted answer

you can code of the behavior yourself instead of using allowpointselect:

      series: {
            cursor: 'pointer',
            point: {
                events: {
                    click: function(event) {
                        this.select();
                    }
                }
            }
        }

fiddle here.


Related Query

More Query from same tag