Interface IHasSeries<TX, TY>
- Namespace
- BlazOrbit.Charts.Abstractions
- Assembly
- BlazOrbit.Charts.dll
Implemented by chart types that consume one or more typed data series over an X / Y plane (Bar, Line, Area).
public interface IHasSeries<TX, TY>
Type Parameters
TXType of the X-axis values (e.g. System.DateTime, string, double).
TYType of the Y-axis values (typically a numeric type).
Properties
Series
The series rendered by the chart, in declaration order. Order affects stacking, legend listing and z-index.
IEnumerable<BOBChartSeries<TX, TY>>? Series { get; }
Property Value
- IEnumerable<BOBChartSeries<TX, TY>>