Can you please tell me how to format whole number only on the linear gauge chart instead of decimal?
For example, 1,2,3,4,6,7,8,9 Not 1.5, 2.5, 3.5, etc
Thanks,
Chi Ming
Hello Chi Ming,
Thank you for contacting Infragistics!
You can use formatLabel event in order to change the value of the label, for more refer to the snippet bellow.
1 2 3
formatLabel: function(evt, ui) { ui.label = ui.value | 0; }