Class XYAxisOpt
Options for an X-axis or Y-axis.
Inheritance
Namespace: PLplot
Assembly: PLplotNet.dll
Syntax
public static class XYAxisOpt : object
Fields
Name | Description |
---|---|
BaseParallelLabels | Write numeric labels for the y axis parallel to the base of the graph, rather than parallel to the axis. |
ConventionalLabels | Writes numeric labels at major tick intervals in the conventional location (below box for X, left of box for Y). |
CustomLabels | Use custom labelling function to generate axis label text. The custom labelling function can be defined with the plslabelfunc command. |
DateTime | Plot labels as date / time. Values are assumed to be seconds since the epoch (as used by gmtime). |
DrawAxis | Draws axis, X-axis is horizontal line (y=0), and Y-axis is vertical line (x=0). |
DrawBottom | Draws bottom (for X-axis) edge of frame. |
DrawBottomWithoutEdgeLine | Draws bottom (for X-axis) edge of frame without edge line. |
DrawLeft | Draws left (for Y-axis) edge of frame. |
DrawLeftWithoutEdgeLine | Draws left (for Y-axis) edge of frame without edge line. |
DrawRight | Draws right (for Y-axis) edge of frame. |
DrawRightWithoutEdgeLine | Draws right (for Y-axis) edge of frame without edge line. |
DrawTop | Draws top (for X-axis) edge of frame. |
DrawTopWithoutEdgeLine | Draws top (for X-axis) edge of frame without edge line. |
FixedPoint | Always use fixed point numeric labels. |
InvertTickMarks | Inverts tick marks, so they are drawn outwards, rather than inwards. |
Log | Labels axis logarithmically. This only affects the labels, not the data, and so it is necessary to compute the logarithms of data points before passing them to any of the drawing routines. |
MajorGrid | Draws a grid at the major tick interval. |
MajorTicks | Draws major ticks. |
MajorTicksWithoutMarks | Draws major ticks (including the side effect of the numerical labels for the major ticks) except exclude drawing the major and minor tick marks. |
MinorGrid | Draws a grid at the minor tick interval. |
None | No options. |
SubTicks | Enables subticks between major ticks, only valid if t is also specified. |
UnconventionalLabels | Writes numeric labels at major tick intervals in the unconventional location (above box for X, right of box for Y). |