If there is a similar class or property etc try to keep the consistency and use the same/similar summary.
Creates a new instance of <see cref="CLASS"/>
/// <summary>
/// Creates a new instance of <see cref="LineConfig"/>
/// </summary>
Config for a <see cref="CHART"/>
/// <summary>
/// Config for a <see cref="ChartJs.Blazor.Charts.ChartJsLineChart"/>
/// </summary>
The options-subconfig of a <see cref="CONFIG"/>
/// <summary>
/// The options-subconfig of a <see cref="LineConfig"/>
/// </summary>
The data-subconfig of a <see cref="CONFIG"/>
/// <summary>
/// The data-subconfig of a <see cref="LineConfig"/>
/// </summary>
A dataset for a <see cref="CHART"/>
It should also include a mention of the wrappers if it implements the covariant IMixableDataset.
Defines the type of data in this dataset. Use Wrappers from <see cref="Common.Wrappers"/> for value types.
/// <summary>
/// A dataset for a <see cref="Charts.ChartJsLineChart"/>
/// </summary>
/// <typeparam name="TData">Defines the type of data in this dataset. Use Wrappers from <see cref="Common.Wrappers"/> for value types.</typeparam>
If there is a property that represents a color, it should be of type string (unless there's wrapper implemented -> maybe in the future). It should contain a mention of ColorUtil
.
See <see cref="Util.Color.ColorUtil"/> for working with colors.
/// <summary>
/// The fontcolor of the label
/// <para>See <see cref="Util.Color.ColorUtil"/> for working with colors.</para>
/// </summary>