Hi @jcliff29,
Blazor is a declarative framework and the Radzen Chart follows this paradigm. You can add series by declaring them in the markup e.g. via @foreach
<RadzenChart>
@foreach(var myDataItem in myData)
{
<RadzenLineSeries Data=@myDataItem.Data
CategoryProperty=@myDataItem.Category
ValueProperty=@myDataItem.Value />
}
</RadzenChart>