Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. 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.