Skip to main content
A newer version of this page is available. .

ChartCommonAnnotationConfigBuilder.Template(TemplateName) Method

Specifies the client-side template.

Namespace: DevExtreme.AspNet.Mvc.Builders

Assembly: DevExtreme.AspNet.Core.dll

Declaration

public ChartCommonAnnotationConfigBuilder Template(
    TemplateName name
)

Parameters

Name Type Description
name TemplateName

A template name.

Returns

Type Description
ChartCommonAnnotationConfigBuilder

A reference to this instance after the method is called.

Remarks

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

@(Html.DevExtreme().Chart()
    .CommonAnnotationSettings(settings => settings
        .Template(new TemplateName("myChartCommonAnnotationConfig_template"))
    )
)

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