• Components
    • Barcodes
    • Buttonsupdated
    • Charts
    • Conversational UIupdated
    • Data Query
    • Date Inputsupdated
    • Date Math
    • Dialogsupdated
    • Drawing
    • Dropdowns
    • Editorupdated
    • Excel Export
    • File Saver
    • Filter
    • Ganttupdated
    • Gauges
    • Gridupdated
    • Iconsupdated
    • Indicators
    • Inputsupdated
    • Labels
    • Layoutupdated
    • ListBoxupdated
    • ListView
    • Mapbeta
    • Menusupdated
    • Navigationupdated
    • Notification
    • Pagerupdated
    • PDF Export
    • PivotGridupdated
    • Popup
    • ProgressBars
    • Ripple
    • Schedulerupdated
    • ScrollViewupdated
    • Sortableupdated
    • ToolBarupdated
    • Tooltipsupdated
    • TreeList
    • TreeView
    • Typography
    • Uploadsupdated
    • Utilities
  • Styling & Themes
  • Common Features
  • Project Setup
  • Knowledge Base
  • Sample Applications
  • FAQ
  • Troubleshooting
  • Updates
  • Changelogs
New to Kendo UI for Angular? Start a free 30-day trial

CircularGaugeCenterTemplateDirective

A directive that selects a template within the <kendo-circulargauge> component which will be used for the center template (more information and example).

import { Component } from '@angular/core';

@Component({
    selector: 'my-app',
    template: `
        <kendo-circulargauge [value]="value">
            <ng-template kendoCircularGaugeCenterTemplate let-value="value">
                {{ value }}%
            </ng-template>
        </kendo-circulargauge>

    `
})
export class AppComponent {
  public value: number = 10;
}

Selector

[kendoCircularGaugeCenterTemplate]

In this article

Not finding the help you need?