2023-09-22 17:51:07 +03:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2023-03-01 13:54:33 +02:00
|
|
|
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; }
|
|
|
|
|
|
2023-09-22 17:51:07 +03:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the values for category.
|
|
|
|
|
/// </summary>
|
|
|
|
|
IEnumerable<double> ValuesForCategory(double category);
|
|
|
|
|
|
2024-04-22 12:52:15 +03:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the items for category.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="category"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
IEnumerable<object> ItemsForCategory(double category);
|
|
|
|
|
|
2023-03-01 13:54:33 +02:00
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the value at the specified index.
|
|
|
|
|
/// </summary>
|
|
|
|
|
double ValueAt(int index);
|
|
|
|
|
}
|
|
|
|
|
}
|