QualitativeRange Class
The storage of the QualitativeAxisX range settings.
Declaration
public class QualitativeRange
extends RangeBase
Inherited Members
Inheritance
Constructors
QualitativeRange() Constructor
Initializes a new QualitativeRange class instance with default parameters.
Declaration
public QualitativeRange()
QualitativeRange(String, String) Constructor
Initializes a new QualitativeRange class instance with specified parameters.
Declaration
public QualitativeRange(String min, String max)
Parameters
Name | Type | Description |
---|---|---|
min | String | The start value of a data range. |
max | String | The end value of a data range. |
Methods
getMax() Method
Returns the end value of a data range that a chart can visualize.
Declaration
public String getMax()
Returns
Type | Description |
---|---|
String | The String object that is the range end value. Note that data that is out of the [min, max] range is never visualized. |
getMin() Method
Returns the start value of a data range that a chart can visualize.
Declaration
public String getMin()
Returns
Type | Description |
---|---|
String | The String object that is the end value of range. Note that data that is out of the [min, max] range is never visualized. |
getVisualMax() Method
Returns the end value of a range that is currently displayed on a screen.
Declaration
public String getVisualMax()
Returns
Type | Description |
---|---|
String | The String object that is the end value of the on-screen range. Note that this value should be within a [min, max] range. |
getVisualMin() Method
Returns the start value of a range that is currently displayed on a screen.
Declaration
public String getVisualMin()
Returns
Type | Description |
---|---|
String | The String object that is the start value of the on-screen range. Note that this value should be within a [min, max] range. |
setMax(String) Method
Specifies the end value of a data range that a chart can visualize.
Declaration
public void setMax(String value)
Parameters
Name | Type | Description |
---|---|---|
value | String | The String object that is the range end value. Note that data that is out of the [min, max] range is never visualized. |
setMin(String) Method
Specifies the start value of a data range that a chart can visualize.
Declaration
public void setMin(String value)
Parameters
Name | Type | Description |
---|---|---|
value | String | The String object that is the end value of range. Note that data that is out of the [min, max] range is never visualized. |
setVisualMax(String) Method
Specifies the end value of a range that is currently displayed on a screen.
Declaration
public void setVisualMax(String value)
Parameters
Name | Type | Description |
---|---|---|
value | String | The String object that is the end value of the on-screen range. Note that this value should be within a [min, max] range. |
setVisualMin(String) Method
Specifies the start value of a range that is currently displayed on a screen.
Declaration
public void setVisualMin(String value)
Parameters
Name | Type | Description |
---|---|---|
value | String | The String object that is the start value of the on-screen range. Note that this value should be within a [min, max] range. |