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

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