Skip to content

ScatterChartExtensions

Namespace: Hex1b

Assembly: Hex1b.dll

Extension methods for creating instances.

csharp
public static class ScatterChartExtensions

Inheritance

ObjectScatterChartExtensions

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 : Hex1bWidget

ScatterChart<T>(RootContext, IReadOnlyList<T>)

Creates a scatter chart bound to the specified data.

Parameters:

Returns: ScatterChartWidget<<T>>

csharp
public static ScatterChartWidget<T> ScatterChart<T>(this RootContext ctx, IReadOnlyList<T> data)

Released under the MIT License.