Hi,
I've got a chart created using the Graph Builder, to which I've added multiple reference lines on the Y axis via a scripted interactive dialog. I now want to include a "Start Over" button which removes them all. I know I could delete them individually by referring to the same values on the Y axis that were used to create them in the first place, e.g.
axisbox << Add Ref Line( 90, "Dashed", blue );
axisbox << Remove Ref Line( 90 );
The problem is that because of the way they've been created, I don't know what the exact values actually are - and I therefore want to be able to clear them all without needing to refer to all the Y values in turn. I know I found a way to do this some time way back - and it was very simple - but I've forgotten how I did it. Can anybody tell me how it can be done?