mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
33 lines
884 B
C#
33 lines
884 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Radzen.Blazor
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for <see cref="RadzenStackedColumnSeries{TItem}" />.
|
|
/// </summary>
|
|
public interface IChartStackedColumnSeries
|
|
{
|
|
/// <summary>
|
|
/// Gets the count.
|
|
/// </summary>
|
|
/// <value>The count.</value>
|
|
int Count { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the values for category.
|
|
/// </summary>
|
|
IEnumerable<double> ValuesForCategory(double category);
|
|
|
|
/// <summary>
|
|
/// Gets the items for category.
|
|
/// </summary>
|
|
/// <param name="category"></param>
|
|
/// <returns></returns>
|
|
IEnumerable<object> ItemsForCategory(double category);
|
|
|
|
/// <summary>
|
|
/// Gets the value at the specified index.
|
|
/// </summary>
|
|
double ValueAt(int index);
|
|
}
|
|
} |