Skip to main content

BarGaugeLegendBuilder.MarkerTemplate(TemplateName) Method

Specifies the client-side markerTemplate.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public BarGaugeLegendBuilder MarkerTemplate(
    TemplateName name
)

Parameters

Name Type Description
name TemplateName

A template name.

Returns

Type Description
BarGaugeLegendBuilder

A reference to this instance after the method is called.

Remarks

This method applies an external template to a marker. Refer to External Templates for more information and code examples.

@(Html.DevExtreme().BarGauge()
    .Legend(legend => legend
        .MarkerTemplate(new TemplateName("myBarGaugeLegend_markerTemplate"))
    )
)

@using(Html.DevExtreme().NamedTemplate("myBarGaugeLegend_markerTemplate")) {
    <div>
        Template content
    </div>
}
See Also