score:1

the simplest way is trigger mouseout/mouseover in click event.

point: {
    events: {
      click: function(event) {
        toggleproducthide(event.point.name);
        this.onmouseout();
        this.onmouseover(event);
      }
    }
  }

Related Query

More Query from same tag