Skip to main content

CircularGaugeAnimationBuilder.Duration(Double) Method

Determines how long animation runs. Mirrors the client-side duration option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public CircularGaugeAnimationBuilder Duration(
    double value
)

Parameters

Name Type Description
value Double

The option value.

Returns

Type Description
CircularGaugeAnimationBuilder

A reference to this instance after the method is called.

Remarks

Use the following notation to set the option’s value:

@(Html.DevExtreme().CircularGauge()
    .Animation(animation => animation
        .Duration(1000)
    )
)
See Also