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
  • Types of charts
  • Title of axes
  • Languages that use a non-Latin character set
  • Languages that use a non-Latin character set
WINDEV
WindowsLinuxJavaReportes y ConsultasCódigo de Usuario (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Código Navegador
WINDEV Mobile
AndroidWidget Android iPhone/iPadIOS WidgetApple WatchMac Catalyst
Otros
Procedimientos almacenados
Defines the title of X-axis and the title of Y-axis in a chart.
Example of titles for the chart axes:
Title of axes
Note By default, the axes of a graph have no title.
Linux Caution: In Linux, this function requires a specific configuration. For more details, see The charts.
Ejemplo
// Modify the title of the vertical axis in "MyChart"
grAxisTitle("MyChart", "Time", grYCoordinate)
// Modify the title of the horizontal axis in "CHART_MyChart"
grAxisTitle(CHART_MyChart, "Time", grYCoordinate)
Sintaxis
grAxisTitle(<Chart name> , <Title> , <Axis direction>)
<Chart name>: Control name or character string
Name of the chart to be used. This name corresponds to:
  • the name of the chart defined programmatically with grCreate.
  • the name of the Chart control in the window, page or report editor.
Android Only Chart controls are available.
PHP Only interactive Chart controls are available.
<Title>: Character string
Title of specified axis.
<Axis direction>: Constant
Orientation of axis to use:
grSecondaryYCoordinateMarks on secondary Y-axis (vertical axis).
grXCoordinate
(default value)
Marks on X-axis (horizontal axis).
grYCoordinateMarks on Y-axis (vertical axis).
Observaciones

Types of charts

Depending on the type of chart and on <Axis direction>, grAxisTitle is taken into account or not:
Chart typeHorizontal axisVertical axis
Line chartgrAxisTitle taken into account.grAxisTitle taken into account.
Stock chart (Candlestick and BarChart)grAxisTitle taken into account.grAxisTitle taken into account.
Column chartgrAxisTitle taken into account.grAxisTitle taken into account.
Min/Max Stock chartgrAxisTitle taken into account.grAxisTitle taken into account.
ScattergrAxisTitle taken into account.grAxisTitle taken into account.
PiegrAxisTitle not taken into account.grAxisTitle not taken into account.

Any changes made with grAxisTitle will take effect the next time grDraw is called.

Title of axes

The title of chart axes can be displayed for the different axes.
Title of axes
The content of the title for the chart axes is defined by grAxisTitle. This function can also be used to position this title according to the desired axis. You cannot define the positioning and/or the orientation of the title in relation to the axis.
The font used for the chart title can be modified by grAxisTitleFont.

Languages that use a non-Latin character set

Languages that use a non-Latin character set

grAxisTitle will use the selected non-Latin character set only if the associated project configuration uses UNICODE strings at runtime.
To check the selected option in the current configuration:
  1. In the "Project Explorer" pane, display the context menu for the "Configurations" option and select "Description".
  2. Display the "Unicode" tab: the "Utilizar cadenas UNICODE en ejecución" option must be checked.
  3. Validate if necessary.
Componente: wd300grf.dll
Versión mínima requerida
  • Versión 9
Esta página también está disponible para…
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