summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 5f0b251)
raw | patch | inline | side by side (parent: 5f0b251)
author | alex <alex@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 10 Mar 2002 14:58:30 +0000 (14:58 +0000) | ||
committer | alex <alex@a5681a0c-68f1-0310-ab6d-d61299d08faa> | |
Sun, 10 Mar 2002 14:58:30 +0000 (14:58 +0000) |
Updated for the NE and ISINF operators in RPN
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@85 a5681a0c-68f1-0310-ab6d-d61299d08faa
git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@85 a5681a0c-68f1-0310-ab6d-d61299d08faa
doc/rrdgraph.src | patch | blob | history | |
doc/rrdgraph_rpn.src | patch | blob | history |
diff --git a/doc/rrdgraph.src b/doc/rrdgraph.src
index 980380e391b2c6fddf47f8ef61a596c74bbdfd2e..2f45c19d8d64fe3a9730f250a8e8bf5f3e3c5314 100644 (file)
--- a/doc/rrdgraph.src
+++ b/doc/rrdgraph.src
=item X-Axis
=item X-Axis
-B<[-x|--x-grid E<lt>I<GTMC<:>GSTC<:>MTMC<:>MSTC<:>LTMC<:>LSTC<:>LPRC<:>LFM>E<gt>|C<none>]>
+B<[-x|--x-grid E<lt>I<GTMC<:>GSTC<:>MTMC<:>MSTC<:>LTMC<:>LSTC<:>LPRC<:>LFM>E<gt>]>
+
+B<[-x|--x-grid C<none>]>
The x-axis label is quite complex to configure, if you don't have
very special needs it is probably best to rely on the autoconfiguration
The x-axis label is quite complex to configure, if you don't have
very special needs it is probably best to rely on the autoconfiguration
=item Y-Axis
=item Y-Axis
-B<[-y|--y-grid I<E<lt>grid stepE<gt>:E<lt>label factorE<gt>>|C<none>]>
+B<[-y|--y-grid I<E<lt>grid stepE<gt>:E<lt>label factorE<gt>>]>
+
+B<[-y|--y-grid C<none>]>
Y-axis grid lines appear at each I<grid step> interval. Labels are
placed every I<label factor> lines. You can specify C<-y none> to
Y-axis grid lines appear at each I<grid step> interval. Labels are
placed every I<label factor> lines. You can specify C<-y none> to
--imginfo '<IMG SRC="/img/%s" WIDTH="%lu" HEIGHT="%lu" ALT="Demo">'
--imginfo '<IMG SRC="/img/%s" WIDTH="%lu" HEIGHT="%lu" ALT="Demo">'
-B<[-c|--color I<COLORTAGBB<#>I<rrggbb>B<[>I<aa>B<<]>
+B<[-c|--color I<COLORTAG>#I<rrggbb>[I<aa>]]>
Override the default colors for the standard elements of the graph.
The I<COLORTAG> is one of C<BACK> ground, C<CANVAS>, C<SHADEA> for the
Override the default colors for the standard elements of the graph.
The I<COLORTAG> is one of C<BACK> ground, C<CANVAS>, C<SHADEA> for the
C<MGRID> for the major grid, C<FONT>, C<FRAME> and axis, C<ARROW>.
Each color is composed out of three hexadecimal numbers specifying
its color component (00 is off, FF is maximum) of red, green and blue.
C<MGRID> for the major grid, C<FONT>, C<FRAME> and axis, C<ARROW>.
Each color is composed out of three hexadecimal numbers specifying
its color component (00 is off, FF is maximum) of red, green and blue.
+Optionally you may add another hexademimal number specifying the
+transparency (FF is solid).
You may set this option several times to alter multiple defaults.
A green arrow is made by: C<--color ARROW:00FF00>
You may set this option several times to alter multiple defaults.
A green arrow is made by: C<--color ARROW:00FF00>
-B<--zoom> I<factor>
+B<[--zoom I<factor>]>
-Zoom the graphics by the given amount ... The factor must be > 0
+Zoom the graphics by the given amount ... The factor must be E<gt> 0
-B<[-n|--font I<FONTTAG>B<:>I<size>B<:>I<font>
+B<[-n|--font I<FONTTAG>B<:>I<size>B<:>I<font>]>
Lets you customize which font to use for the various text elements on the
rrd graphs. C<DEFAULT> sets the default value for all elements C<TITLE>,
Lets you customize which font to use for the various text elements on the
rrd graphs. C<DEFAULT> sets the default value for all elements C<TITLE>,
diff --git a/doc/rrdgraph_rpn.src b/doc/rrdgraph_rpn.src
index 7952a3f22e0899501c0fb47b443bb3017c3be8ea..8b5d49bbf92a842af2e74501717cca1d1ef5c4e1 100644 (file)
--- a/doc/rrdgraph_rpn.src
+++ b/doc/rrdgraph_rpn.src
B<LT, LE, GT, GE, EQ, NE>
B<LT, LE, GT, GE, EQ, NE>
-I<Note: NE is not yet implemented>
-
Pop two elements from the stack, compare them for the selected condition
and return 1 for true or 0 for false. Comparing an I<unknown> or an
I<infinite> value will always result in 0 (false).
B<UN, ISINF>
Pop two elements from the stack, compare them for the selected condition
and return 1 for true or 0 for false. Comparing an I<unknown> or an
I<infinite> value will always result in 0 (false).
B<UN, ISINF>
-I<Note: ISINF is not yet implemented>
-
Pop one element from the stack, compare this to I<unknown> respectively
to I<positive or negative infinity>. Returns 1 for true or 0 for false.
Pop one element from the stack, compare this to I<unknown> respectively
to I<positive or negative infinity>. Returns 1 for true or 0 for false.