ChartDataValue
ChartDataValue class
Encapsulates chart data value
class ChartDataValue;
Properties
| Property | Type | Description |
|---|---|---|
| valueType | CellValueType | Readonly. Gets the value type of the chart data. |
| stringValue | string | Readonly. Gets the string value of the chart data. |
| intValue | number | Readonly. Gets the Int value of the chart data. |
| doubleValue | number | Readonly. Gets the double value of the chart data. |
| dateTimeValue | Date | Readonly. Gets the DateTime value of the chart data. |
| boolValue | boolean | Readonly. Gets the boolean value of the chart data. |
Methods
| Method | Description |
|---|---|
| getValueType() | @deprecated. Please use the ‘valueType’ property instead. Gets the value type of the chart data. |
| getStringValue() | @deprecated. Please use the ‘stringValue’ property instead. Gets the string value of the chart data. |
| getIntValue() | @deprecated. Please use the ‘intValue’ property instead. Gets the Int value of the chart data. |
| getDoubleValue() | @deprecated. Please use the ‘doubleValue’ property instead. Gets the double value of the chart data. |
| getDateTimeValue() | @deprecated. Please use the ‘dateTimeValue’ property instead. Gets the DateTime value of the chart data. |
| getBoolValue() | @deprecated. Please use the ‘boolValue’ property instead. Gets the boolean value of the chart data. |
| isNull() | Checks whether the implementation object is null. |
valueType
Readonly. Gets the value type of the chart data.
valueType : CellValueType;
stringValue
Readonly. Gets the string value of the chart data.
stringValue : string;
intValue
Readonly. Gets the Int value of the chart data.
intValue : number;
doubleValue
Readonly. Gets the double value of the chart data.
doubleValue : number;
dateTimeValue
Readonly. Gets the DateTime value of the chart data.
dateTimeValue : Date;
boolValue
Readonly. Gets the boolean value of the chart data.
boolValue : boolean;
getValueType()
@deprecated. Please use the ‘valueType’ property instead. Gets the value type of the chart data.
getValueType() : CellValueType;
Returns
getStringValue()
@deprecated. Please use the ‘stringValue’ property instead. Gets the string value of the chart data.
getStringValue() : string;
getIntValue()
@deprecated. Please use the ‘intValue’ property instead. Gets the Int value of the chart data.
getIntValue() : number;
getDoubleValue()
@deprecated. Please use the ‘doubleValue’ property instead. Gets the double value of the chart data.
getDoubleValue() : number;
getDateTimeValue()
@deprecated. Please use the ‘dateTimeValue’ property instead. Gets the DateTime value of the chart data.
getDateTimeValue() : Date;
getBoolValue()
@deprecated. Please use the ‘boolValue’ property instead. Gets the boolean value of the chart data.
getBoolValue() : boolean;
isNull()
Checks whether the implementation object is null.
isNull() : boolean;