score:2

Accepted answer

you could just check if its a neggative value and return according to that:

           formatter: function () {
                if(this.value  >= 0 ){
                    return '$' + this.value / 1000;
                }else{
                    return '-$' + this.value / 1000*-1;
                }
            }

Related Query

More Query from same tag