Package com.microstrategy.web.app.beans
Class GraphAxisInformation
- java.lang.Object
-
- com.microstrategy.web.app.beans.GraphAxisInformation
-
public class GraphAxisInformation extends java.lang.ObjectThis class is used for handling the axis information for the ones that should be displayed given the current graph major type- Since:
- MicroStrategy Web 7.3.1 or earlier
-
-
Constructor Summary
Constructors Constructor Description GraphAxisInformation(int descriptorID, int argumentID, boolean stepScaleSupport)Class constructor, initializing its properties with the given parameters
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetArgumentID()Returns the event argument ID associtaed with this axisintgetDescriptorID()Returns the descriptor ID associated with this axisbooleanisStepScaleSupported()Returns if this axis supports step and scale properties
-
-
-
Constructor Detail
-
GraphAxisInformation
public GraphAxisInformation(int descriptorID, int argumentID, boolean stepScaleSupport)Class constructor, initializing its properties with the given parameters- Parameters:
descriptorID- identifier of the descriptor to use for this axisargumentID- identifier of the event argument for this axisstepScaleSupport- indicates if this axis supports step and scale properties
-
-
Method Detail
-
isStepScaleSupported
public boolean isStepScaleSupported()
Returns if this axis supports step and scale properties- Returns:
Trueif this axis supports step and scale properties. Otherwise it returnsFalse
-
getDescriptorID
public int getDescriptorID()
Returns the descriptor ID associated with this axis- Returns:
- the value of the descriptor ID property
-
getArgumentID
public int getArgumentID()
Returns the event argument ID associtaed with this axis- Returns:
- the value of the argument ID property
-
-