Defines a data series within a spreadsheet chart.
Object
Namespace: Radzen.Documents.Spreadsheet
Assembly: Radzen.Blazor.dll
public class ChartSeriesGets or sets the category range formula (e.g. "Sheet1!$A$2:$A$10").
public string Categories { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the category range formula (e.g. "Sheet1!$A$2:$A$10"). |
Gets or sets the cached category values from the XLSX file.
public List<string> CategoryCache { get; set; }
| Type | Description |
|---|---|
| List<string> | Gets or sets the cached category values from the XLSX file. |
Gets or sets the series color.
public string Color { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the series color. |
Gets or sets the series index.
public int Index { get; set; }
| Type | Description |
|---|---|
| int | Gets or sets the series index. |
Gets or sets the series name.
public string Name { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the series name. |
Gets or sets the cached numeric values from the XLSX file.
public List<double?> ValueCache { get; set; }
| Type | Description |
|---|---|
| List<double?> | Gets or sets the cached numeric values from the XLSX file. |
Gets or sets the value range formula (e.g. "Sheet1!$B$2:$B$10").
public string Values { get; set; }
| Type | Description |
|---|---|
| string | Gets or sets the value range formula (e.g. "Sheet1!$B$2:$B$10"). |