Pie chart labels cutting off zeros after decimal

I need to show the trailing zeros in the pie chart label.

This is how I am setting the values:

var json = ;

//Static labels

json.push ( {data : (record.fields.SXPRIN01), label : “PRINCIPAL” } );

json.push ( {data : (int), label : “INTEREST” } );

json.push ( {data : (record.fields.SXESCP), label : “ESCROW<br>TAXES &<br> INSURANCE”} );

json.push ( {data : (record.fields.SXOTHP), label : “OPTIONAL<br>PRODUCTS<br>& SERVICES” } );

results.attr(‘data-chartdata’,JSON.stringify(json));

Are the trailing 0s inside the data file or the result of some calculations?

Has this been solved? I’m currently having the same issue. There’s trailing 0s in the data but the pie chart legend is doing its own formatting and cutting them off. How would I override the legend’s number formatting?