Summ:  Values Methods    Details:  Values Methods      Class:  Prev Next
com.artfulbits.aiCharts.Base
Enum ChartAxis.LabelsMode

java.lang.Object java.lang.Enum<ChartAxis.LabelsMode> com.artfulbits.aiCharts.Base.ChartAxis.LabelsMode

Declaration: public static enum ChartAxis.LabelsMode extends Enum<ChartAxis.LabelsMode>
Enclosing Class: ChartAxis
All Interfaces: java.lang.Comparable<ChartAxis.LabelsMode>, java.io.Serializable

 

Represents axis labels mode enumeration.

 

Since: 1.0

 

 

Values Summary
HybridLabels
    
Indicates that labels for axis are automatically calculated for each point's X value on corresponding ChartSeries.
NoLabels
    
Indicates that labels for axis will not be calculated at all.
RangeLabels
    
Indicates that labels for axis are automatically calculated with respect to its range and interval.
SeriesLabels
    
Indicates that labels for axis are automatically calculated for each point's X value on corresponding ChartSeries.

 

 

Methods Summary
static ChartAxis.LabelsMode valueOf(java.lang.String name)
    
Returns the enum constant of this type with the specified name.
static ChartAxis.LabelsMode[] values()
    
Returns an array containing the constants of this enum type, in the order they are declared.

 

Methods inherited from class: java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf

 

Methods inherited from class: java.lang.Object
getClass, notify, notifyAll, wait, wait, wait

 

 

 

 

RangeLabels

 

public static final ChartAxis.LabelsMode RangeLabels

 

Indicates that labels for axis are automatically calculated with respect to its range and interval.

 

Since: 1.0

 

 

 

SeriesLabels

 

public static final ChartAxis.LabelsMode SeriesLabels

 

Indicates that labels for axis are automatically calculated for each point's X value on corresponding ChartSeries.

 

Since: 1.0

 

 

 

HybridLabels

 

public static final ChartAxis.LabelsMode HybridLabels

 

Indicates that labels for axis are automatically calculated for each point's X value on corresponding ChartSeries.

 

Since: 1.0

 

 

 

NoLabels

 

public static final ChartAxis.LabelsMode NoLabels

 

Indicates that labels for axis will not be calculated at all.

 

Since: 1.0
See also: ChartAxis.getCustomLabels()

 

 

 

 

values

 

public static ChartAxis.LabelsMode[] values( )

 

Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
    for (ChartAxis.LabelsMode c : ChartAxis.LabelsMode.values())
        System.out.println(c);

 

Returns:
an array containing the constants of this enum type, in the order they are declared

 

 

 

valueOf

 

public static ChartAxis.LabelsMode valueOf( java.lang.String name)

 

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. Extraneous whitespace characters are not permitted.

 

Parameters:
name-
the name of the enum constant to be returned
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null

 

 

© 2005 - 2010 ArtfulBits. All rights reserved.