Home › Forums › Chart Support › charts in ionic 2 y-axis labels changes › Reply To: charts in ionic 2 y-axis labels changes
@prabhjot,
labelFormatter is a custom function whereas suffix is a property within the axis object. Using the labelFormatter as:
suffix
axisY:{ labelFormatter: function ( e ) { return e.value + "K"; } }
should work fine in your case. You could also use suffix property within the axis to achieve the same. Please have a look at suffix.
___ Suyash Singh Team CanvasJS