ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE


  • Marks on axes
  • Types of charts
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
Indicates the step for the marks on the vertical/horizontal axis of a chart (which means the interval between two marks).
Reminder: The step for the marks is set to 0 by default. This step is adjusted to best fit the available space in the selected destination.
Linux Caution: A specific configuration is required to use this function in Linux. For more details, see The charts.
Example
// Chart created through programming
// Vertical axis of the chart with a step set to 5
grGraduate("MyChart", 5, grYCoordinate)
// Chart control
// Horizontal axis of chart with a step set to 10
grGraduate(CHART_MyChart, 10, grXCoordinate)
Syntax
grGraduate(<Chart name> , <Step> [, <Type of axis>])
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the chart name defined through programming with grCreate.
  • the name of the Chart control in the window, page or report editor.
Android Only Chart controls are available.
PHP Only the interactive Chart controls are available.
<Step>: Real
Interval between two marks. If this parameter is equal to 0, the step will be adjusted to best fit the available space in the selected destination.
<Type of axis>: Optional constant
Type of the axis for which the step is defined:
grSecondaryYCoordinateMarks on the secondary X-axis.
grXCoordinate
(Default value)
Marks on the X-axis.
grYCoordinateMarks on the Y-axis.
grZCoordinateMarks on the Z-axis (Surface chart only).
Universal Windows 10 AppAndroidPHP This constant is not available.
Remarks

Marks on axes

  • Limitations: 100 marks above and 100 marks below the X-axis.
  • The last mark displayed is the first multiple of <Step> greater than the highest data value. The entire data is displayed regardless of the destination dimension.
  • To modify the start and end marks on the horizontal, vertical or secondary axis of a chart, use grOrigin.
  • The data defined by grGraduate will be taken into account during the next call to grDraw.

Types of charts

The marks on axes have no effect on the Pie charts.
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
The Chart control Unit examples (WINDEV Mobile): The Chart control
[ + ] Using the Chart control to display different types of charts:
- Pie (or pie chart)
- Line
- Column chart
- Area
Component: wd270grf.dll
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment