ChartDataValue

ChartDataValue class

Encapsulates chart data value

class ChartDataValue;

Properties

PropertyTypeDescription
valueTypeCellValueTypeReadonly. Gets the value type of the chart data.
stringValuestringReadonly. Gets the string value of the chart data.
intValuenumberReadonly. Gets the Int value of the chart data.
doubleValuenumberReadonly. Gets the double value of the chart data.
dateTimeValueDateReadonly. Gets the DateTime value of the chart data.
boolValuebooleanReadonly. Gets the boolean value of the chart data.

Methods

MethodDescription
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

CellValueType

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;