as you mentioned in this post: https://answers.flexsim.com/content/kbentry/158947/utilization-vs-time-statistics-collector.html the state is tracked via the "On Entry" and "On Exit" triggers. I'm looking to change this setup by incorporating object labels, enabling the state chart to display the "busy" state segmented by each object's label on the floor storage. I mean, I want to create a pie chart that shows the busy state of aggregated floor storage broken down by type of the objects that have been in them. How should I update these triggers below then?
// On Entry current.setState(STATE_BUSY, 0);
// On Exit if(current.subnodes.length == 1) { current.setState(STATE_IDLE, 0); }