New to Kendo UI for Angular? Start a free 30-day trial
ArcCenterTemplateDirective
Represents a directive that allows customizing the center part of the <kendo-arcgauge> component.
Use this directive to create a center template
(more information and example).
The template context provides access to the current ArcGauge value through the value and color fields.
html
<kendo-arcgauge [value]="value">
   <ng-template kendoArcGaugeCenterTemplate let-value="value" let-color="color">
        {{ value }}%
    </ng-template>
</kendo-arcgauge>Selector
[kendoArcGaugeCenterTemplate]