Hi @edwardhorton,
Glad that our paths cross again. 😊
With the graph code we worked on yesterday, the graph info will only automatically update when that particular user adds another choice. It will not update when another user, in another app instance adds a row to the datasource.
The good news is, there is an easy workaround. You could use a Timer control that refreshes your datasource every x amount of seconds/minutes.
(1) Add a Timer control to your Graph screen
(2) Set the AutoStart, AutoPause and Repeat properties to true (this will automatically start the timer when navigating to the screen and automatically pause the timer when navigating from that screen - during the screen visit, the timer will keep running repeatedly)
(3) Add the following to the OnTimerEnd property
Refresh(LISTNAME)
(4) Set the duration to your preferred value (in milliseconds)
//Preferably the value would not be too low (value below will refresh every 30 sec)
30000
If this solves your question, would you be so kind as to accept it as a solution & give it a thumbs up.
Thanks!