IVEdrawlabel


Purpose
Add a text box to an existing plot.
Synopsis
procedure IVEdrawlabel(handle: integer, x: real, y: real, text: string)
Arguments
handle 
The number returned by IVEaddplot.
The x coordinate of the point.
The y coordinate of the point.
text 
The text that will be displayed at the given point.
Example
This code complements the time graph with a dial:
...
! This should complement the example for IVEdrawarrow

forall (i in 1..12)
 IVEdrawlabel(arrows,
  4.8*cos(1.57-6.28*i/12), 5*sin(1.57-6.28*i/12), ""+i)
Further information
The box will be centered horizontally just above the point given.


If you have any comments or suggestions about these pages, please send mail to docs@dashoptimization.com.