Interface IChartStackedColumnSeries
Assembly: Radzen.Blazor.dll
Syntax
public interface IChartStackedColumnSeries
Properties
Count
Declaration
Property Value
Type |
Description |
System.Int32 |
The count.
|
Methods
ItemsForCategory(Double)
Gets the items for category.
Declaration
IEnumerable<object> ItemsForCategory(double category)
Parameters
Type |
Name |
Description |
System.Double |
category |
|
Returns
Type |
Description |
IEnumerable<System.Object> |
|
ValueAt(Int32)
Gets the value at the specified index.
Declaration
double ValueAt(int index)
Parameters
Type |
Name |
Description |
System.Int32 |
index |
|
Returns
Type |
Description |
System.Double |
|
ValuesForCategory(Double)
Gets the values for category.
Declaration
IEnumerable<double> ValuesForCategory(double category)
Parameters
Type |
Name |
Description |
System.Double |
category |
|
Returns
Type |
Description |
IEnumerable<System.Double> |
|