GINO Graphics Suite - GINOGRAF v9.5  

ggDrawGraphTitle

Syntax

[C/C++:]
void ggDrawGraphTitle(char string[ ], int xpos, int ypos);
[F90:]
subroutine ggDrawGraphTitle(string, xpos, ypos)

integer, intent(in) :: xpos, ypos
character*(*), intent(in) :: string

Arguments

string
Variable or constant holding the graph title

xpos
Flag determining the X position of the title within the current graph drawing limits

= GLEFT Left justified
= GCENTRE Centre justified
= GRIGHT Right justified

ypos
Flag determining the Y position of the title within the current graph drawing limits

= GTOP Top
= GMIDDLE Middle
= GBOTTOM Bottom

Description

The routine ggDrawGraphTitle() displays a text string as a title in one of nine positions within the current graph drawing limits. The position is determined by the combination of the values xpos and ypos.

The graph drawing limits are set using the routine ggSetPlotFrame() or are defined as being the current GINO window limits if this routine has not been called. The title is output using the current GINO character and font attributes (except angle and justification).

Any trailing spaces in string are ignored on output and a maximum of 140 characters can be used in the graph title.

See Also

ggDrawGraphTitle Usage
ggSetPlotFrame