LineChartElement.Series property
Provider for the current series set; re-pulled on refresh. Return a stable list reference while the underlying data is unchanged (and a new instance when it changes): the renderer diffs this by reference to skip re-meshing, so a provider that allocates a fresh list every call (e.g. a per-call .ToList()) defeats that and re-triangulates on every refresh tick.
public Func<IReadOnlyList<ChartSeries>> Series { get; set; }See Also
Section titled “See Also”- struct ChartSeries
- record LineChartElement
- namespace Stellar.Abstractions.Services