맨위로가기
 

SBCHART

닫기

tooltip.custom

#2.0.91

tooltip이 해당 옵션의 리턴값으로 표시됩니다.

  • Type : Function(datum: any) : string
  • Example

    Code

    
    tooltip: {
    	custom: function(data) {
    		return '<div style="color: white; border: 3px solid rgb(103, 58, 183);">' + data[0].name + " : " + data[0].start + ' ~ ' + data[0].end + '</div>';
    	},
    },