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
Initializes the color of a series in a "Scatter" chart.
Reminder: By default, the colors of series (or the colors of sections) are selected according to a preset order among a set of 13 colors.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The charts.
Example
// Adds a data into the "Scatter" chart named "MyChart".
// This value (10, 20) is added at the end of the first series.
grScatterAddDataXY("MyChart", 1, 10, 20)
// The series 1 of "MyChart" is colored in yellow
grScatterSeriesColor("MyChart", 1, LightYellow)
// Adds a data into the CHART_MyChart control ("Scatter" chart).
// This value (20, 20) is added at the end of the first series.
grScatterAddDataXY(CHART_MyChart, 1, 20, 20)
// The series 1 of CHART_MyChart is colored in green
grScatterSeriesColor(CHART_MyChart, 1, LightGreen)
Syntax
grScatterSeriesColor(<Chart name> , <Series number> , <Color>)
<Chart name>: Control name or character string
Name of the chart to be used. This name can correspond to:
  • the chart name defined through programming with grCreate.
  • the name of the Chart control in the window, page or report editor.
PHP Only the interactive Chart controls are available.
<Series number>: Integer
Number of the series to use.
<Color>: Integer or constant
Color of specified series. This color can correspond to:
Remarks
  • The data defined by grScatterSeriesColor will be taken into account during the next call to grDraw.
  • To display the color gradients, use grGradient.
  • grScatterSeriesColor and grSeriesColor are equivalent.
    The syntax of grSeriesColor used with "Scatter" charts is:
    grSeriesColor(<Chart name>, 2*<Index>-1, <Color>)
Related Examples:
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