Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Does the toFixed() method not work in thingworx?
Solved! Go to Solution.
Please try Math.round(value) in your java script to achieve Rounding in ThingWorx.
var result = Math.round(5.56); //result will be 6
Please try Math.round(value) in your java script to achieve Rounding in ThingWorx.
var result = Math.round(5.56); //result will be 6
Awesome thanks.