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

ChartNavigatorHintBuilder

Methods

Format(System.String)

Sets the format.

Parameters

format - System.String

The format.

Example


            @( Html.Kendo().StockChart(Model)
                       .Name("Chart")
                       .Navigator(nav => nav
                            .Series(series =>
                            {
                               series.Bar(s => s.SalesAmount);
                            })
                            .Hint(hint => hint
                                .Format("{0:d} | {1:d}")
                            )
                       )
            )

Template(System.String)

Sets the template

Parameters

template - System.String

The template.

Example


            @( Html.Kendo().StockChart(Model)
                       .Name("Chart")
                       .Navigator(nav => nav
                            .Series(series =>
                            {
                               series.Bar(s => s.SalesAmount);
                            })
                            .Hint(hint => hint
                                .Template("From: #= from # To: #= to #")
                            )
                       )
            )

Visible(System.Boolean)

Sets the hint visibility.

Parameters

visible - System.Boolean

The hint visibility.

Example


            @( Html.Kendo().StockChart(Model)
                       .Name("Chart")
                       .Navigator(nav => nav
                            .Series(series =>
                            {
                               series.Bar(s => s.SalesAmount);
                            })
                            .Hint(hint => hint
                                .Visible(false)
                            )
                       )
            )

In this article
Not finding the help you need?