New to Telerik UI for ASP.NET MVC? Download free 30-day trial

ChartLegendItemHighlightSettingsBuilder

Methods

Markers(System.Action)

The markers configuration of the legend item when it is hovered.

Parameters

configurator - System.Action<ChartLegendItemHighlightMarkersSettingsBuilder>

The configurator for the markers setting.

Example


            @(Html.Kendo().Chart()
                      .Name("Chart")
                      .Legend(legend => legend.Item(item => item.Highlight(h => h.Markers(m => m.TypeHandler("typeHandler")))))
            )

Visible(System.Boolean)

If set to false, the hover effect of the legend item is disabled.

Parameters

value - System.Boolean

The value for Visible

Example


            @(Html.Kendo().Chart()
                      .Name("Chart")
                      .Legend(legend => legend.Item(item => item.Highlight(h => h.Visible(true))))
            )

In this article
Not finding the help you need?