In Handsontable, you can use the format
option on a numeric
cell to format the values accordingly. Since it uses NumeralJS, I looked through the documentation to see how to format a number to just add the % sign and not multiply by 100 but can't find how to do this without setting my own.
Example cell:
{
"type": "numeric",
"format": "0.00%"
}
When the value is 7, it displays "700.00%"
. I'd like it to show `"7.00%". Any way of doing this in handsontable?