ScatterChartExtensions
Namespace: Hex1b
Assembly: Hex1b.dll
Extension methods for creating instances.
csharp
public static class ScatterChartExtensionsInheritance
Object → ScatterChartExtensions
Methods
ScatterChart<T, TParent>(WidgetContext<TParent>, IReadOnlyList<T>)
Creates a scatter chart bound to the specified data.
Parameters:
ctx(WidgetContext<<TParent>>): The widget context.data(IReadOnlyList<<T>>): The data source for the chart.
Returns: ScatterChartWidget<<T>>
csharp
public static ScatterChartWidget<T> ScatterChart<T, TParent>(this WidgetContext<TParent> ctx, IReadOnlyList<T> data) where TParent : Hex1bWidgetScatterChart<T>(RootContext, IReadOnlyList<T>)
Creates a scatter chart bound to the specified data.
Parameters:
ctx(RootContext): The root context.data(IReadOnlyList<<T>>): The data source for the chart.
Returns: ScatterChartWidget<<T>>
csharp
public static ScatterChartWidget<T> ScatterChart<T>(this RootContext ctx, IReadOnlyList<T> data)