AYUDA EN LÍNEA
 WINDEVWEBDEV Y WINDEV MOBILE

Este contenido se ha traducido automáticamente.  Haga clic aquí  para ver la versión en inglés.
Ayuda / WLanguage / Funciones WLanguage / Controles, páginas y ventanas / Funciones de gráficos
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Initializes the label of data series in a "Scatter" chart.
Example of series label:
Series label
Reminder: By default, a graph has no label.
Linux Caution: In Linux, this function requires a specific configuration. For more details, see The charts.
New in SaaS
Android This function is now available for Android applications.
Note: This feature is only available from WINDEV Suite SaaS 2025 - Update 2. For more details, see Using new features exclusive to WINDEV Suite SaaS 2025.
Ejemplo
// Initializes the "Sales" label of second data series in "MyChart"
grScatterSeriesLabel("MyChart", 2, "Sales")
// Initializes the "Purchase" label of third data series in CHART_MyChart
grScatterSeriesLabel(CHART_MyChart, 3, "Purchase")
Sintaxis
grScatterSeriesLabel(<Chart name> , <Series number> , <Label>)
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the name of the chart defined programmatically with grCreate.
  • the name of the Chart control in the window, page or report editor.
PHP Only interactive Chart controls are available.
<Series number>: Integer
Number of the series for which a label will be initialized.
<Label>: Character string
Caption of label to initialize.
Observaciones
  • The label font can be modified by grLabelFont.
  • The data defined by grScatterSeriesLabel will be taken into account during the next call to grDraw.
  • grScatterSeriesLabel and grSeriesLabel are equivalent.
    The syntax of grSeriesLabel used with "Scatter" charts is as follows:
    grSeriesLabel(<Chart name>, 2*<Index>-1, <Label>)
    Reminder: A scatter chart uses data in groups of two series (for more details, see grScatterAddDataXY).
Componente: wd300grf.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 14/03/2025

Señalar un error o enviar una sugerencia | Ayuda local