Community Tip - You can Bookmark boards, posts or articles that you'd like to access again easily! 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.