cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X

Rounding in thingworx?

Chao123
11-Garnet

Rounding in thingworx?

Does the toFixed() method not work in thingworx?

1 ACCEPTED SOLUTION

Accepted Solutions

Please try Math.round(value) in your java script to achieve Rounding in ThingWorx.

var result = Math.round(5.56);
//result will be 6

 

View solution in original post

2 REPLIES 2

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.

Top Tags