UNPKG

@progress/kendo-angular-gauges

Version:
29 lines (28 loc) 1.38 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { TemplateRef } from '@angular/core'; import * as i0 from "@angular/core"; /** * 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]({% slug centertemplate_arcgauge %})). * * The template context provides access to the current ArcGauge value through the `value` and `color` fields. * * @example * ```html * <kendo-arcgauge [value]="value"> * <ng-template kendoArcGaugeCenterTemplate let-value="value" let-color="color"> * {{ value }}% * </ng-template> * </kendo-arcgauge> * ``` */ export declare class ArcCenterTemplateDirective { templateRef: TemplateRef<any>; constructor(templateRef: TemplateRef<any>); static ɵfac: i0.ɵɵFactoryDeclaration<ArcCenterTemplateDirective, [{ optional: true; }]>; static ɵdir: i0.ɵɵDirectiveDeclaration<ArcCenterTemplateDirective, "[kendoArcGaugeCenterTemplate]", never, {}, {}, never, never, true, never>; }