Value

ChartDataCell.Value property

Gets or sets the value of a cell. Read/write Object.

public object Value { get; set; }

Examples

[C#]
workbook.GetCell(0, "F2").Value = -2.5;
workbook.GetCell(0, "G3").Value = 6.3;

See Also