Syntax 4 For the symbol of a data point

Description

Obtains the symbol of a data point in a graph.

Applies to

PowerBuilder DataWindow

DataWindow control

Syntax

PowerBuilder

integer dwcontrol.GetDataStyle ( string graphcontrol, integer seriesnumber, integer datapointnumber, REF grSymbolType symbolvariable )

Argument

Description

dwcontrol

A reference to the DataWindow control containing the graph.

graphcontrol

A string whose value is the name of the graph in the DataWindow control.

seriesnumber

The number of the series in which you want the symbol type of a data point.

datapointnumber

The number of the data point for which you want the symbol type.

symbolvariable

In PowerBuilder, a variable of type grSymbolType in which you want to store the symbol type.

For a list of values, see grSymbolType.


Return value

Returns 1 if it succeeds and -1 if an error occurs. Stores, according to the type of symbolvariable, a value of that enumerated datatype representing the symbol used for the specified data point. If any argument's value is null, GetDataStyle returns null.

Examples

These statements store the symbol for a data point in the variable symbol_type. The data point is the sixth point in the series named in the SingleLineEdit sle_series in the graph gr_depts in the DataWindow control dw_employees:

integer SeriesNbr
grSymbolType symbol_type
 
// Get the number of the series
SeriesNbr = dw_employees.FindSeries("gr_depts", &
      sle_series.Text)
 
// Get the symbol
dw_employees.GetDataStyle("gr_depts", SeriesNbr, &
      6, symbol_type)

See also

FindSeries

GetDataStyleSymbolValue

GetSeriesStyle

SetDataStyle

SetSeriesStyle