Skip to main content

ChartTooltipBuilder.Shared(Boolean) Method

Specifies whether the tooltip is shared across all series points with the same argument. Mirrors the client-side shared option.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ChartTooltipBuilder Shared(
    bool value
)

Parameters

Name Type Description
value Boolean

The option value.

Returns

Type Description
ChartTooltipBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Chart()
    .Tooltip(tooltip => tooltip
        .Shared(true)
    )
)
See Also