포인트 클릭 이벤트 (chartSkill)

포인트 클릭 이벤트 기능을 구현 할 수 있습니다.

Example

myChart.setOptions({
  chart:{
      type:'column'
  },
  series: [{
    name: "서울",
    data: [60, 40, 20, 80]
  }, {
    name: "인천",
    data: [30, 50, 90, 70]
  }, {
    name: "부산",
    data: [40, 70, 30, 60]
  }],
  events: {
    pointClick: function() {
      alert("pointClick: "+ this.series.name);
    }
  }
},{
  append: true,
  redraw: true
});

s

Since

version desc
7.3.0.0