Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Русский - 日本語
Ajuda do Scilab >> Biblioteca de Gráficos > Datatips > datatipGetStruct

datatipGetStruct

Retrieve the datatips data structure from the polyline entity. This function is obsolete.

Syntax

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 retrieve 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

History

VersãoDescrição
5.5.0 Function tagged obsolete. Will be removed in 5.5.1. Please use "datatips" property instead.

See Also

  • datatips — Tool for placing and editing tips along the plotted curves.
  • datatipSetDisplay — Set the function used to compute the datatip string.
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:34:44 CEST 2016