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
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Deletes a data series from a chart. The data found in the series is deleted.
Please note: The remaining series are re-numbered.. For example, if the series 1 is deleted, the series 2 becomes the series 1, ...
Linux Caution: In Linux, this function requires a specific configuration. For more details, see The charts.
Example
// Suppression de la seconde série de données du graphe "MonGraphe"
grDeleteSeries("MonGraphe", 2)
// Suppression de la troisième série de données du graphe "GRF_MonGraphe"
grDeleteSeries(GRF_MonGraphe, 3)
Syntax
grDeleteSeries(<Chart name> [, <Series number> [, <Options>]])
<Chart name>: Control name or character string
Name of chart defined by grCreate or name of Chart control.
Android Only Chart controls are available.
PHP Only interactive Chart controls are available.
<Series number>: Optional integer
Number of the series to delete. If this parameter is not specified, the entire data is erased from the chart.
<Options>: Integer constant
Type of deletion to perform:
grDataDelete data from the series.
grDataAndStyle
(Default value)
Delete data and style from the series.
Remarks
  • If all the chart series are deleted, new data must be added in order to redraw the chart.
  • Any changes made with grDeleteSeries will take effect the next time grDraw is called.
  • For a series based on an item, the data is erased. The data source is stored and the data can be rebuilt. To cut the link to the source, use grSourceSeries and modify the source of the series.
Related Examples:
WD Chart Training (WINDEV): WD Chart
[ + ] This example presents the different uses of the Chart control.
Different types of charts are presented:
- Pie
- Sunburst
- Line
- Scatter
- Column
- Area
- etc.

The main features presented here are the possibility to customize of charts from the code, as well as to fill the chart from an HFSQL data file, or in the editor.
The Chart functions Unit examples (WINDEV): The Chart functions
[ + ] Using the main chart designer features of WINDEV:
- Create a Pie, Column or Line chart
- Define the display area of a chart
- Define the chart options (legend, percentage, ...)
- Draw a line on a chart
Component: wd300grf.dll
Versión mínima requerida
  • Versión 9
Comentarios
Haga clic en [Agregar] para publicar un comentario

Última modificación: 27/03/2025

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