GINO Graphics Suite - GINOGRAF v9.5  

ggAddAreaChartOutline

Syntax

[C/C++:]
void ggAddAreaChartOutline(int nareas,GAREACHART *areas,int xory);
[F90:]
subroutine ggAddAreaChartOutline(nareas, areas, xory)

integer, intent(in) :: nareas, xory
type(GAREACHART), intent(in) :: areas(*)

Arguments

nareas
The number of areas to be plotted

areas
Array of structures giving data for the Area Chart

xory
Specified axis on which the data widths are represented

= GXAXIS Data on X axis, heights on Y axis
= GYAXIS Data on Y axis, heights on X axis

Description

The routine ggAddAreaChartOutline() draws rectangles defined by the data held in the array of structures areas. The four components represent the start and finish widths and the lower and upper heights with respect to either the current axes as set up by ggSetAxesPos() and ggSetAxesScaling(), or the default axes used by one of the high level routines. The widths of the areas, held in areas.s and areas.f, are shown on the X-axis if xory=GXAXIS, and on the Y-axis if xory=GYAXIS.

See Also

ggAddAreaChartOutline Usage
ggPlotAreaChart
ggFillAreaChart
ggAddAreaChartValues