I have a string assigned that needs to map to a label name. For simplicity:
string label = "numShifts";
I then want to set the label called "numShifts" on an object ("Processor1" in my example). I tried using the below command, but am getting a compiler error. Anyone know how I could do this.
model().find("Processor1").labels[label] = 2;