I would like to get the the value of a label named "Trajectoire" in a stats collector.
The column is set :
the table :
the value of the label is defined when the event of SC fires. But nothing in the column "Trajectoire", why ? Thanks in advance
I would like to get the the value of a label named "Trajectoire" in a stats collector.
The column is set :
the table :
the value of the label is defined when the event of SC fires. But nothing in the column "Trajectoire", why ? Thanks in advance
An array is not a valid data type for a statistics collector column.
You could display the contents of the array as a single string by adding them together The code below would show them with " | " as a separator between the array entries.
Array trajecArr = data.token.Trajectoire; if(trajecArr.length > 0) { string trajecStr = trajecArr[1]; for(int i = 2; i <= trajecArr.length; i++) { trajecStr += " | " + trajecArr[i]; } return trajecStr; } return "";
14 People are following this question.
FlexSim can help you understand and improve any system or process. Transform your existing data into accurate predictions.
FlexSim is a fully 3D simulation software environment. FlexSim can be used to simulate any process in any industry.
FlexSim®, FlexSim Healthcare™, Problem Solved.®, the FlexSim logo, the FlexSim X-mark, and the FlexSim Healthcare logo with stylized Caduceus mark are trademarks of FlexSim Software Products, Inc. All rights reserved.
Privacy | Do not sell or share my personal information | Cookie preferences | Report noncompliance | Terms of use | Legal | © Autodesk Inc. All rights reserved