Formula

IChartDataCell.Formula property

获取或设置A1样式的公式。

public string Formula { get; set; }

Examples

[C#]
IChartDataCell cell = workbook.GetCell(0, "B2");
cell.Formula = "1 + SUM(F2:H5)";

See Also