PolarChartCommonAnnotationConfigBuilder.Template(TemplateName) Method
Specifies the client-side template.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public PolarChartCommonAnnotationConfigBuilder Template(
TemplateName name
)
Parameters
Name | Type | Description |
---|---|---|
name | TemplateName | A template name. |
Returns
Type | Description |
---|---|
PolarChartCommonAnnotationConfigBuilder | 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().PolarChart()
.CommonAnnotationSettings(settings => settings
.Template(new TemplateName("myPolarChartCommonAnnotationConfig_template"))
)
)
@using(Html.DevExtreme().NamedTemplate("myPolarChartCommonAnnotationConfig_template")) {
<div>
Template content
</div>
}
See Also