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

Community Tip - Need help navigating or using the PTC Community? Contact the community team. X

Model external data in Vuforia Studio

augmentor
12-Amethyst

Model external data in Vuforia Studio

Hello Community,

 

as you can see in the Video, I added some external data (axis angles) from a robot to the Hololens experience. However, I have 2 questions regarding the numbers:

1) Is there a way to modify the numbers in Studio, so that no numbers after the point are shown?

 

2) Is there a way to add a Unit to the numbers? When trying to add a second 3D Label only for the unit, it does not look good, because it is not connected to the number.

 

Thank you!

ACCEPTED SOLUTION

Accepted Solutions

if you have not used code to display the data then you will have directly used the result of a service and made the binding on a widget.

You must then use the Binding filters.

fig1.pngfig2.png

 

Bye 

 

Giuseppe

 

View solution in original post

4 REPLIES 4

it's possible using toFixed() method.

 

Example:

 

var num = 5.56789;
var n = num.toFixed(2);

 

n=5.56

 

 

for Add  Unit to number try :

example:

 

$scope.view.wdg['3DGauge-1']['text']= n+" bar";

 

I Hope i was helpful.

 

Thanks @Giuseppe_Fiore for the reply!

 

I have not worked with code at all in Vuforia Studio, so I`m not sure how to go about this.

 

Could you please help me where I need to write the code/method in Studio?

 

Cheers

if you have not used code to display the data then you will have directly used the result of a service and made the binding on a widget.

You must then use the Binding filters.

fig1.pngfig2.png

 

Bye 

 

Giuseppe

 

amazing, works like a charm! Thanks a lot for your help!

Announcements
Top Tags