mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-02-04 05:35:44 +00:00
14 lines
325 B
C#
14 lines
325 B
C#
namespace Radzen.Blazor
|
|
{
|
|
/// <summary>
|
|
/// Marker interface for <see cref="RadzenColumnSeries{TItem}" />.
|
|
/// </summary>
|
|
public interface IChartColumnSeries
|
|
{
|
|
/// <summary>
|
|
/// Gets the count.
|
|
/// </summary>
|
|
/// <value>The count.</value>
|
|
int Count { get; }
|
|
}
|
|
} |