AxisBins
AxisBins class
Represents axis bins
class AxisBins;
Properties
| Property | Type | Description |
|---|---|---|
| isByCategory | boolean | Indicates whether grouping data by category is enabled. |
| isAutomatic | boolean | Indicates whether the axis bins are automatic. |
| width | number | Gets or sets the width of the axis bin. |
| count | number | Gets or sets the count of axis bins |
| overflow | number | Gets or sets the overflow of axis bins |
| underflow | number | Gets or sets the underflow of axis bins |
Methods
| Method | Description |
|---|---|
| isByCategory() | @deprecated. Please use the ‘isByCategory’ property instead. Indicates whether grouping data by category is enabled. |
| setIsByCategory(boolean) | @deprecated. Please use the ‘isByCategory’ property instead. Indicates whether grouping data by category is enabled. |
| isAutomatic() | @deprecated. Please use the ‘isAutomatic’ property instead. Indicates whether the axis bins are automatic. |
| setIsAutomatic(boolean) | @deprecated. Please use the ‘isAutomatic’ property instead. Indicates whether the axis bins are automatic. |
| getWidth() | @deprecated. Please use the ‘width’ property instead. Gets or sets the width of the axis bin. |
| setWidth(number) | @deprecated. Please use the ‘width’ property instead. Gets or sets the width of the axis bin. |
| getCount() | @deprecated. Please use the ‘count’ property instead. Gets or sets the count of axis bins |
| setCount(number) | @deprecated. Please use the ‘count’ property instead. Gets or sets the count of axis bins |
| getOverflow() | @deprecated. Please use the ‘overflow’ property instead. Gets or sets the overflow of axis bins |
| setOverflow(number) | @deprecated. Please use the ‘overflow’ property instead. Gets or sets the overflow of axis bins |
| getUnderflow() | @deprecated. Please use the ‘underflow’ property instead. Gets or sets the underflow of axis bins |
| setUnderflow(number) | @deprecated. Please use the ‘underflow’ property instead. Gets or sets the underflow of axis bins |
| resetOverflow() | Reset the overflow |
| resetUnderflow() | Reset the underflow |
| isNull() | Checks whether the implementation object is null. |
isByCategory
Indicates whether grouping data by category is enabled.
isByCategory : boolean;
isAutomatic
Indicates whether the axis bins are automatic.
isAutomatic : boolean;
Remarks
If Width or Count is called, the value will be false.
width
Gets or sets the width of the axis bin.
width : number;
count
Gets or sets the count of axis bins
count : number;
overflow
Gets or sets the overflow of axis bins
overflow : number;
underflow
Gets or sets the underflow of axis bins
underflow : number;
isByCategory()
@deprecated. Please use the ‘isByCategory’ property instead. Indicates whether grouping data by category is enabled.
isByCategory() : boolean;
setIsByCategory(boolean)
@deprecated. Please use the ‘isByCategory’ property instead. Indicates whether grouping data by category is enabled.
setIsByCategory(value: boolean) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean | The value to set. |
isAutomatic()
@deprecated. Please use the ‘isAutomatic’ property instead. Indicates whether the axis bins are automatic.
isAutomatic() : boolean;
Remarks
If Width or Count is called, the value will be false.
setIsAutomatic(boolean)
@deprecated. Please use the ‘isAutomatic’ property instead. Indicates whether the axis bins are automatic.
setIsAutomatic(value: boolean) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | boolean | The value to set. |
Remarks
If Width or Count is called, the value will be false.
getWidth()
@deprecated. Please use the ‘width’ property instead. Gets or sets the width of the axis bin.
getWidth() : number;
setWidth(number)
@deprecated. Please use the ‘width’ property instead. Gets or sets the width of the axis bin.
setWidth(value: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | number | The value to set. |
getCount()
@deprecated. Please use the ‘count’ property instead. Gets or sets the count of axis bins
getCount() : number;
setCount(number)
@deprecated. Please use the ‘count’ property instead. Gets or sets the count of axis bins
setCount(value: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | number | The value to set. |
getOverflow()
@deprecated. Please use the ‘overflow’ property instead. Gets or sets the overflow of axis bins
getOverflow() : number;
setOverflow(number)
@deprecated. Please use the ‘overflow’ property instead. Gets or sets the overflow of axis bins
setOverflow(value: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | number | The value to set. |
getUnderflow()
@deprecated. Please use the ‘underflow’ property instead. Gets or sets the underflow of axis bins
getUnderflow() : number;
setUnderflow(number)
@deprecated. Please use the ‘underflow’ property instead. Gets or sets the underflow of axis bins
setUnderflow(value: number) : void;
Parameters:
| Parameter | Type | Description |
|---|---|---|
| value | number | The value to set. |
resetOverflow()
Reset the overflow
resetOverflow() : void;
Remarks
NOTE: This method is now obsolete. This is an internal method that does not need to be called externally to avoid causing problems. This property will be removed 12 months later since July 2024. Aspose apologizes for any inconvenience you may have experienced.
resetUnderflow()
Reset the underflow
resetUnderflow() : void;
Remarks
NOTE: This method is now obsolete. This is an internal method that does not need to be called externally to avoid causing problems. This property will be removed 12 months later since July 2024. Aspose apologizes for any inconvenience you may have experienced.
isNull()
Checks whether the implementation object is null.
isNull() : boolean;