Scilab 5.4.1
      
      
    Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
datatipGetStruct
Retreive the datatips data structure from the polyline entity.
Calling Sequence
datatips_struct=datatipGetStruct(curve_handle)
Arguments
- curve_handle
- A handle on a polyline. 
- datatips_struct
- A tlist of type - datatips.
Description
datatipGetStruct extract the datatips data
            structure out of the polyline  entity. It may be called
            to retreive properties of the datatips data structure to
            customize the tip display.
Examples
x=linspace(0,1,100)'; y=x.^3; clf() plot(x,y); e=gce();p=e.children(1);//get the handle on the polyline datatipCreate(p,50); datatipCreate(p,20); datatips_struct=datatipGetStruct(p) datatips_struct.formatfunction

See Also
- datatips — Tool for placing and editing tips along the plotted curves.
- datatipSetDisplay — Set the function used to compute the datatip string.
- datatipInitStruct — Initialize the datatip structure associated with the given polyline.
| Report an issue | ||
| << datatipGetEntities | Datatips | datatipInitStruct >> |