ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage functions / Controls, pages and windows / Chart functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Deletes a data series from a chart. The data found in the series is deleted.
Caution: The remaining series will be re-numbered. For example, if the series 1 is deleted, the series 2 becomes the series 1, ...
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The charts.
Example
// Delete the second data series from "MyChart"
grDeleteSeries("MyChart", 2)
// Delete the third data series from "CHART_MyChart"
grDeleteSeries(CHART_MyChart, 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 the 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.
  • The modifications performed by grDeleteSeries will be taken into account during the next call to grDraw.
  • 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: wd290grf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 06/22/2023

Send a report | Local help