10-22-2010 09:31 AM
Hello Experts- I cant seem to find how to program a mixed signal graph's plot area names but I can manually change them in teh tree editor on screen. I need to change the Group 0 to a titled label. Anyone know how?
10-22-2010 11:01 AM
Use a graph property node to set active plot in your case to zero. Then set the use the plot name to name each plot. This will appear in the legend. For multipleplots do this inside a for loop with an auto-indexed array of plot names.
If you want the name to appear in the plot area. I think you will need to programmatically build up and "annotation list" and feed that to the graph property node. You can figure out the annotation cluster format by creating a constant or control at the property node terminal.
10-22-2010 11:06 AM
Thanks, but I was referring to the actual tree control in the mixed signal graph's parent field which is defaulted to say Group 0, Group 1, etc.
Is there a way to get to the tree control properties maybe?
10-22-2010 11:29 AM
You can name the Plots within the group as described above...selecting plot area 0 = group 0, etc. I couldn't find a way to programmatically name the group with a quick scan of the properties.
A less elegant approach might be to concantenate a string with the group name in the the plot name field ("groupname.plotname").
Sorry I couldn't be of more help. Good luck.