Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
Hello,
I have 20 bands and assign that bands to 20 members and getting live data in Thingworx with parameter name as Heart rate ,average and max HR .I want to display multiple members data in collection widget please refer the below attachment and suggest :
1) how do I display multiple members live data in collection widget??
2) How to apply state formatting according to Max. heart rate levels ??
3) which widget is used for according to heart rate zones/Points how to apply state formatting to round shape Max heart rate according to bellow dashboard???
Solved! Go to Solution.
In most conditions, you'll be receiving live data by remote property bindings, if you set the properties to be "logged", the value change history will be automatically recorded in ValueStream.
If you use AddStreamEntries service in a newly created Stream entity, and trigger the service by one of the remote property valuechange event (if this property is the most frequently updated value, or you're using Timer), you can get live data.
Because you're presenting data in Collection widget in mashup, you won't be able to update realtime data faster than 1s to the widget, so keeping the data timely in a stream should work fine (as live data).
Each band is presented in a small mashup with 3 gauge;
each row of infotable includes the data of a single client, bind this infotable to the collection widget;
Stateformating should be very self-explanatory, bind the HR data that will change to the state.
You can bind the stateformating in the Gauge, or a Shape widget, the Shape could be a circle
There are more API for Stream and Datatable entities and the data inside are safer than storing in infotable property.
Can you plzz explain in details for how do I used stream getting live data??
In most conditions, you'll be receiving live data by remote property bindings, if you set the properties to be "logged", the value change history will be automatically recorded in ValueStream.
If you use AddStreamEntries service in a newly created Stream entity, and trigger the service by one of the remote property valuechange event (if this property is the most frequently updated value, or you're using Timer), you can get live data.
Because you're presenting data in Collection widget in mashup, you won't be able to update realtime data faster than 1s to the widget, so keeping the data timely in a stream should work fine (as live data).
Hi @RM12.
If you feel your question has been answered, please mark the appropriate response as the Accepted Solution for the benefit of others in the community.
Regards.
--Sharon