Community Tip - You can change your system assigned username to something more personal in your community settings. 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.