com.steema.teechart.axis
Class AxisLabelStyle

java.lang.Object
  extended by com.steema.teechart.misc.Enum
      extended by com.steema.teechart.axis.AxisLabelStyle

public final class AxisLabelStyle
extends Enum

Defines the possible values of Axis.getLabels().getStyle()

Title: AxisLabelStyle class

Description: Defines the possible values of Axis.getLabels().getStyle()

Copyright (c) 2005-2013 by Steema Software SL. All Rights Reserved.

Company: Steema Software SL


Field Summary
static AxisLabelStyle AUTO
          Chooses the Style automatically
static AxisLabelStyle MARK
          Each Series point will have a Label using SeriesMarks style.
static AxisLabelStyle NONE
          No label.
static AxisLabelStyle TEXT
          Each Series point will have a Label using Series.XLabels strings
static AxisLabelStyle VALUE
          Axis labeling is based on axis Minimum and Maximum properties.
 
Method Summary
static AxisLabelStyle fromValue(int value)
           
 
Methods inherited from class com.steema.teechart.misc.Enum
getValue
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

AUTO

public static final AxisLabelStyle AUTO
Chooses the Style automatically


NONE

public static final AxisLabelStyle NONE
No label. This will trigger the event with empty strings


VALUE

public static final AxisLabelStyle VALUE
Axis labeling is based on axis Minimum and Maximum properties.


MARK

public static final AxisLabelStyle MARK
Each Series point will have a Label using SeriesMarks style.


TEXT

public static final AxisLabelStyle TEXT
Each Series point will have a Label using Series.XLabels strings

Method Detail

fromValue

public static AxisLabelStyle fromValue(int value)