Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português do Brasil - 日本語 -
Scilab help >> Graphics > Datatips > datatipSetInterp

datatipSetInterp

Set the interpolation mode for tip location.

Calling Sequence

datatipSetInterp(curve_handle,interp_mode)

Arguments

curve_handle

A handle on a curve or surface.

interp_mode

A boolean, if false the tips can only be located at the mesh points, if true interpolation is made between mesh points. The defaul value is false.

Description

Set the interpolation mode for tip location.

Examples

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]);

See Also

  • datatips — Tool for placing and editing tips along the plotted curves.
  • datatipMove — Move a specified datatip using the mouse.

Authors

  • Serge Steer, INRIA
<< datatipSetDisplay Datatips datatipSetOrientation >>

Consortium Scilab (DIGITEO)
Scilab Enterprises

Copyright (c) 2011-2012 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Oct 05 12:10:00 CEST 2011