Set the interpolation mode for tip location.
datatipSetInterp(curve_handle,interp_mode)
:curve_handle A handle on a polyline. :
:
Set the interpolation mode for tip location.
x=`linspace`_(0,1,8)';
y=x.^3;
`clf`_()
`plot`_(x,y);
e=`gce`_();p=e.children(1);//get the handle on the polyline
p.mark_mode="on";p.mark_style=2;p.mark_size=5;
`datatipCreate`_(p,[0.8,0.512]);
datatipSetInterp(p,%t);
`datatipCreate`_(p,[0.8,0.512]);