1AGCHAX(3NCARG) NCAR GRAPHICS AGCHAX(3NCARG)
2
3
4
6 AGCHAX - Provides a way for the user to change the color, intensity,
7 line style, etc., of various portions of the axes.
8
10 SUBROUTINE AGCHAX (IFLG,IAXS,IPRT,VILS)
11
13 IFLG (an input expression of type INTEGER) is zero if a
14 particular object is about to be drawn, non-zero if it has
15 just been drawn.
16
17 IAXS (an input expression of type INTEGER) is the number of the
18 axis being drawn. The values 1, 2, 3, and 4 indicate the
19 left, right, bottom, and top axes, respectively.
20
21 IPRT (an input expression of type INTEGER) indicates the part of
22 the axis being drawn. Possible values are as follows:
23
24 · 1 implies the line of the axis.
25
26 · 2 implies a major tick
27
28 · 3 implies a minor tick.
29
30 · 4 implies the mantissa of a numeric label.
31
32 · 5 implies the exponent of a numeric label.
33
34 VILS (an input expression of type REAL) is the value in the
35 label system at the point where the part is being drawn.
36 For IPRT = 1, VILS is zero.
37
39 This routine is not called by the user program, but by Autograph
40 itself, just before and just after each of the objects making up an
41 axis is drawn. The default version does nothing. The user may supply
42 his own version to change the color, intensity, line style, etc. of
43 selected portions of the axis.
44
45 Note: A user version of AGCHAX should not call any other Autograph
46 routine.
47
49 To use AGCHAX, load the NCAR Graphics libraries ncarg, ncarg_gks, and
50 ncarg_c, preferably in that order.
51
53 Online: autograph, agback, agbnch, agchcu, agchil, agchnl, agcurv,
54 agdshn, aggetc, aggetf, aggeti, aggetp, aggetr, agpwrt, agrstr, agsave,
55 agsetc, agsetf, agseti, agsetp, agsetr, agstup, agutol, anotat, displa,
56 ezmxy, ezmy, ezxy, ezy
57
58 Hardcopy: NCAR Graphics Fundamentals, UNIX Version
59
61 Copyright (C) 1987-2007
62 University Corporation for Atmospheric Research
63
64 This documentation is free software; you can redistribute it and/or
65 modify it under the terms of the GNU General Public License as
66 published by the Free Software Foundation; either version 2 of the
67 License, or (at your option) any later version.
68
69 This software is distributed in the hope that it will be useful, but
70 WITHOUT ANY WARRANTY; without even the implied warranty of
71 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
72 General Public License for more details.
73
74 You should have received a copy of the GNU General Public License along
75 with this software; if not, write to the Free Software Foundation,
76 Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
77
78
79
80UNIX March 1993 AGCHAX(3NCARG)