A few tricks for XY plots:
1. Verticle lines can be achieved using (X,minY),(X,MaxY) such as the XY array (0,0),(10,0),(10,10), (20,10),(20,0) with connected plot style will plot a square wave.
2. Switching between plots (multiplot) can allow you to change colors, stlyse in what appears to be a single plot.
3. This seems not to work because gaps in numbers will show a connected line. Fix this with using NaN for you Y value at the point you dont want the plot to show.
4. Text on plot. Use a cursor but make the cursor color transparent. You can set the cursor to the XY where you want text (cursor caption or lable) to appear without the user knowing that there is a cursor in use.
There are so amny ways to use the XY graph, just requires a little imagination.
Paul