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