IStringOrDoubleChartValue

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.

public interface IStringOrDoubleChartValue : ISingleCellChartValue

Properties

NameDescription
AsISingleCellChartValue { get; }Allows to get base ISingleCellChartValue interface. Read-only ISingleCellChartValue.
AsLiteralDouble { get; set; }Returns or sets the literal double if DataSourceType property is DataSourceType.DoubleLiterals. Read/write Double.
AsLiteralString { get; set; }Returns or sets the literal string if DataSourceType property is DataSourceType.StringLiterals. Read/write String.

Methods

NameDescription
ToDouble()Converts value to double.

See Also