IStringOrDoubleChartValue Interface

Represent string or double value which can be stored in pptx presentation document in two ways: 1) in cell/cells of workbook related to chart; 2) as literal value.

Namespace:  Aspose.Slides.Charts
Assembly:  Aspose.Slides (in Aspose.Slides.dll) Version: 20.3.0.0 (20.3)
Syntax
public interface IStringOrDoubleChartValue : ISingleCellChartValue, 
	IBaseChartValue

The IStringOrDoubleChartValue type exposes the following members.

Properties
  NameDescription
Public propertyAsCell
Returns or sets chart data cell. Read/write IChartDataCell.
(Inherited from ISingleCellChartValue.)
Public propertyAsIBaseChartValue
Allows to get base IBaseChartValue interface. Read-only IBaseChartValue.
(Inherited from ISingleCellChartValue.)
Public propertyAsISingleCellChartValue
Allows to get base ISingleCellChartValue interface. Read-only ISingleCellChartValue.
Public propertyAsLiteralDouble
Returns or sets the literal double if DataSourceType property is DataSourceType.DoubleLiterals. Read/write Double.
Public propertyAsLiteralString
Returns or sets the literal string if DataSourceType property is DataSourceType.StringLiterals. Read/write String.
Public propertyData
Read/write Object.
(Inherited from IBaseChartValue.)
Public propertyDataSourceType
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.
(Inherited from IBaseChartValue.)
Methods
  NameDescription
Public methodToDouble
See Also