Class OdfChartDataCache
Represents a lazily loaded snapshot of a chart's local data table. 表示圖表本地資料表的延遲載入快照。
public sealed class OdfChartDataCache
- Inheritance
-
OdfChartDataCache
- Inherited Members
Constructors
OdfChartDataCache(IReadOnlyList<IReadOnlyList<object?>>)
Initializes a new instance of the OdfChartDataCache class. 初始化 OdfChartDataCache 類別的新執行個體。
public OdfChartDataCache(IReadOnlyList<IReadOnlyList<object?>> rows)
Parameters
rowsIReadOnlyList<IReadOnlyList<object>>The parsed chart data rows. / 已解析的圖表資料列。
Properties
IsEmpty
Gets whether the data snapshot has no rows. 取得資料快照是否沒有任何列。
public bool IsEmpty { get; }
Property Value
Rows
Gets the chart data rows. 取得圖表資料列。
public IReadOnlyList<IReadOnlyList<object?>> Rows { get; }