iamdenny/BigScatterChart

x, y축 텍스트 포매터가 필요할 것 같습니다

Closed this issue · 1 comments

x, y축 텍스트 포매터가 필요할 것 같습니다

초기 옵션 셋팅시
'fXAxisFormat' : function(nXStep, i){
var nMilliseconds = (nXStep * i + this._nXMin),
sDate = new Date(nMilliseconds).toString("HH:mm");
return sDate;
},
'fYAxisFormat' : function(nYStep, i){
return this._addComma((this._nYMax + this._nYMin) - ((nYStep*i) + this._nYMin));
}

이렇게 넣으시면 되고,

중간에 변동시에는
oBigScatterChart.option('fXAxisFormat', function(nXStep, i){ // custom // });
이렇게 하시면 됩니다.