5
추가 데이터를 highcharts 시리즈로 설정
차트 '툴팁'에 표시하는 데 사용할 시리즈 개체에 추가 데이터를 전달하는 방법이 있습니까? 예를 들면 tooltip: { formatter: function() { return '<b>'+ this.series.name +'</b><br/>'+ Highcharts.dateFormat('%b %e', this.x) +': '+ this.y; } 여기서는 series.name, this.x & this.y를 시리즈에만 사용할 수 있습니다. 데이터 세트와 함께 또 다른 동적 값을 전달해야하며 시리즈 객체를 통해 …