IBaseChartValue

public interface IBaseChartValue

Represents a value of a chart.

Methods

MethodDescription
getDataSourceType()Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual.
setDataSourceType(int value)Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual.
getData()Read/write Object.
setData(Object value)Read/write Object.

getDataSourceType()

public abstract int getDataSourceType()

Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual. In other words it specifies the type of value of the Data property. This property is read-only. For changing value of this property you can use one of the ChartDataPointCollection.DataSourceTypeFor<…> properties. Read/write DataSourceType(#getDataSourceType.getDataSourceType/#setDataSourceType(int).setDataSourceType(int)).

Returns: int

setDataSourceType(int value)

public abstract void setDataSourceType(int value)

Specifies whether AsCell or AsLiteralString or AsLiteralDouble property is actual. In other words it specifies the type of value of the Data property. This property is read-only. For changing value of this property you can use one of the ChartDataPointCollection.DataSourceTypeFor<…> properties. Read/write DataSourceType(#getDataSourceType.getDataSourceType/#setDataSourceType(int).setDataSourceType(int)).

Parameters:

ParameterTypeDescription
valueint

getData()

public abstract Object getData()

Read/write Object.

Returns: java.lang.Object

setData(Object value)

public abstract void setData(Object value)

Read/write Object.

Parameters:

ParameterTypeDescription
valuejava.lang.Object