ASP.NET Core MVC Controls | ComponentOne
C1.AspNetCore.Mvc Assembly / C1.Web.Mvc.Fluent Namespace / ChartGesturesExtension Class / SupportGestures<T,TControl,TBuilder> Method
The type of data.
The type of the chart.
The builder type for the chart.
The builder for the chart.
The builder for the ChartGestures object.

In This Topic
    SupportGestures<T,TControl,TBuilder> Method
    In This Topic
    Apply the ChartGestures extender in the chart which inherits from FlexChartCore.
    Syntax
    'Declaration
     
    Public Shared Function SupportGestures
        (Of T,TControl As FlexChartCore(Of T),
         TBuilder As FlexChartCoreBuilder(Of T,TControl,TBuilder))( _
       ByVal chartBuilder As FlexChartCoreBuilder(Of T,TControl,TBuilder), _
       ByVal chartGestureBuilder As Action(Of ChartGesturesBuilder(Of T)) _
    ) As FlexChartCoreBuilder(Of T,TControl,TBuilder)
    public static FlexChartCoreBuilder<T,TControl,TBuilder> SupportGestures<T,TControl,TBuilder>( 
       FlexChartCoreBuilder<T,TControl,TBuilder> chartBuilder,
       Action<ChartGesturesBuilder<T>> chartGestureBuilder
    )
    where TControl: FlexChartCore<T>
    where TBuilder: FlexChartCoreBuilder<T,TControl,TBuilder>

    Parameters

    chartBuilder
    The builder for the chart.
    chartGestureBuilder
    The builder for the ChartGestures object.

    Type Parameters

    T
    The type of data.
    TControl
    The type of the chart.
    TBuilder
    The builder type for the chart.

    Return Value

    Current builder.
    See Also