Skip to main content
12-Amethyst
June 11, 2025
Question

How to create OEE bridge view

  • June 11, 2025
  • 1 reply
  • 683 views

Hello All.

 

I really would like to have view like OEE Bridge. 

I was trying to use Waterfall widget but finall resuld doesn t looks like OEE bridge. 

Can I find any custom widget to handle this problem?

 

I would like have something like this

 

phpt84T8h.png

but I have like this one

JK_10565232_1-1749629383951.png

I set up Total like ShowTotal : true and Effecitve time looks like that:

Category: 'Effective Time', // STRING
Amount: undefined ,
ShowTotal: false// STRING

1 reply

17-Peridot
June 16, 2025

Hello @JK_10565232 ,

Can you provide a little more information on what you are trying to accomplish?
 

What version of ThingWorx are you using? This could affect any answer which is provided.
Are there any additional PTC products installed in this environment? Some products add additional widgets.

 

Your sample diagram has more data columns than the ThingWorx version. You also seem to be using different axis values.

 

Regards,

pehowe

12-Amethyst
June 17, 2025

Hello Pehowe.

 

Thank you for your answer.

I am using different axis values?

My output data shape has two columns Category as the X axis and values ​​in percentage for that category.

I am using only one axis Y and X. I have TWX 9.3. There is nothing else installed on this environment except the basic TWX 9.3.

The pictures are just for example.

I would like it to look like I have total as 100% and the rest of the values ​​show how much of that 100% was used by which category.

17-Peridot
June 24, 2025

Hello @JK_10565232 ,
I took a look at the issue and created my own test data. There are some problems but is this what you are going for?

Here is the test data I was providing:
const InputData = new Array(
   ["Availble", 1200, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false], 
   ["Planned Non", -210, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false],
   ["Unscheduled", -110, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false], 
   ["Scheduled",    null,  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false],    
   ["Breakdown",   -36, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false], 
   ["ChangeOver",  -70, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false],
   ["Available Run", null, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false],
   ["Reduced",        -25,  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false],
   ["Stopages",       -35,  0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false] ,
   ["Used",    null, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false],
   ["OutOFSpec", -55, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false], 
  ["EffectiveProduction", null, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, false, false] 
);

Let me know

Regards
Pehowe