org.apache.poi.ss.usermodel.charts
Class AxisCrosses

java.lang.Object
  extended by org.apache.poi.ss.usermodel.charts.AxisCrosses

public class AxisCrosses
extends java.lang.Object

Specifies the possible crossing points for an axis.

Author:
Roman Kashitsyn

Field Summary
static AxisCrosses AUTO_ZERO
          The category axis crosses at the zero point of the value axis (if possible), or the minimum value (if the minimum is greater than zero) or the maximum (if the maximum is less than zero).
static AxisCrosses MAX
          Axis crosses at the minimum value of the chart.
static AxisCrosses MIN
          The axis crosses at the maximum value.
 
Constructor Summary
AxisCrosses()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

AUTO_ZERO

public static final AxisCrosses AUTO_ZERO
The category axis crosses at the zero point of the value axis (if possible), or the minimum value (if the minimum is greater than zero) or the maximum (if the maximum is less than zero).


MIN

public static final AxisCrosses MIN
The axis crosses at the maximum value.


MAX

public static final AxisCrosses MAX
Axis crosses at the minimum value of the chart.

Constructor Detail

AxisCrosses

public AxisCrosses()