IBaseChartValue
public interface IBaseChartValue
Represents a value of a chart.
Methods
Method | Description |
---|---|
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:
Parameter | Type | Description |
---|---|---|
value | int |
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:
Parameter | Type | Description |
---|---|---|
value | java.lang.Object |