Skip to main content
1-Visitor
May 7, 2019
Solved

Model external data in Vuforia Studio

  • May 7, 2019
  • 1 reply
  • 3730 views

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!

Best answer by Giuseppe_Fiore

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

 

1 reply

15-Moonstone
May 7, 2019

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.

 

augmentor1-VisitorAuthor
1-Visitor
May 7, 2019

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

15-Moonstone
May 7, 2019

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