|
|
|
|
|
grScatterSeriesColor (Function) In french: grNuageCouleurSérie 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.
// 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.
<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:
|
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
|
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|