com.spire.xls.core
Interface IChartValueAxis

All Superinterfaces:
IChartAxis
All Known Subinterfaces:
IChartCategoryAxis
All Known Implementing Classes:
ChartCategoryAxis, ChartValueAxis, XlsChartCategoryAxis, XlsChartValueAxis

public interface IChartValueAxis
extends IChartAxis


Method Summary
 double getCrossesAt()
          Represents the point on the axis another axis crosses it.
 double getCrossValue()
          Value where category axis crosses.
 double getMajorUnit()
          Value of major increment.
 double getMaxValue()
          Maximum value on axis.
 double getMinorUnit()
          Value of minor increment.
 double getMinValue()
          Maximum value on axis.
 boolean isAutoCross()
          Automatic category crossing point selected.
 boolean isAutoMajor()
          Automatic major selected.
 void isAutoMajor(boolean value)
          Automatic major selected.
 boolean isAutoMax()
          Automatic maximum selected.
 void isAutoMax(boolean value)
          Automatic maximum selected.
 boolean isAutoMin()
          Automatic minimum selected.
 void isAutoMin(boolean value)
          Automatic minimum selected.
 boolean isAutoMinor()
          Automatic minor selected.
 void isAutoMinor(boolean value)
          Automatic minor selected.
 boolean isLogScale()
          Logarithmic scale.
 void isLogScale(boolean value)
          Logarithmic scale.
 boolean isMaxCross()
          Category axis to cross at maximum value.
 boolean isReverseOrder()
          Values in reverse order.
 void isReverseOrder(boolean value)
          Values in reverse order.
 void setCrossesAt(double value)
          Represents the point on the axis another axis crosses it.
 void setCrossValue(double value)
          Value where category axis crosses.
 void setMaxValue(double value)
          Maximum value on axis.
 void setMinorUnit(double value)
          Value of minor increment.
 void setMinValue(double value)
          Maximum value on axis.
 
Methods inherited from interface com.spire.xls.core.IChartAxis
getAlignment, getAxisType, getBorder, getChart3DOptions, getFont, getMajorGridLines, getMajorTickMark, getMinorGridLines, getMinorTickMark, getNumberFormat, getShadow, getTextRotationAngle, getTickLabelPosition, getTitle, getTitleArea, getVisible, hasMajorGridLines, hasMajorGridLines, hasMinorGridLines, hasMinorGridLines, setAlignment, setMajorTickMark, setMinorTickMark, setNumberFormat, setTextRotationAngle, setTickLabelPosition, setTitle, setVisible
 

Method Detail

getMinValue

double getMinValue()
Maximum value on axis.


setMinValue

void setMinValue(double value)
Maximum value on axis.


getMaxValue

double getMaxValue()
Maximum value on axis.


setMaxValue

void setMaxValue(double value)
Maximum value on axis.


getMajorUnit

double getMajorUnit()
Value of major increment.


getMinorUnit

double getMinorUnit()
Value of minor increment.


setMinorUnit

void setMinorUnit(double value)
Value of minor increment.


getCrossValue

double getCrossValue()
Value where category axis crosses.


setCrossValue

void setCrossValue(double value)
Value where category axis crosses.


getCrossesAt

double getCrossesAt()
Represents the point on the axis another axis crosses it.


setCrossesAt

void setCrossesAt(double value)
Represents the point on the axis another axis crosses it.


isAutoMin

boolean isAutoMin()
Automatic minimum selected.


isAutoMin

void isAutoMin(boolean value)
Automatic minimum selected.


isAutoMax

boolean isAutoMax()
Automatic maximum selected.


isAutoMax

void isAutoMax(boolean value)
Automatic maximum selected.


isAutoMajor

boolean isAutoMajor()
Automatic major selected.


isAutoMajor

void isAutoMajor(boolean value)
Automatic major selected.


isAutoMinor

boolean isAutoMinor()
Automatic minor selected.


isAutoMinor

void isAutoMinor(boolean value)
Automatic minor selected.


isAutoCross

boolean isAutoCross()
Automatic category crossing point selected.


isLogScale

boolean isLogScale()
Logarithmic scale.


isLogScale

void isLogScale(boolean value)
Logarithmic scale.


isReverseOrder

boolean isReverseOrder()
Values in reverse order.


isReverseOrder

void isReverseOrder(boolean value)
Values in reverse order.


isMaxCross

boolean isMaxCross()
Category axis to cross at maximum value.