UNPKG

@progress/kendo-angular-charts

Version:

Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.

33 lines (32 loc) 1.6 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { ConfigurationService } from '../../common/configuration.service'; import { LegendLabels } from '../../common/property-types'; import { LegendInactiveItems } from '../../common/property-types'; import { SettingsComponent } from '../../common/settings.component'; import * as i0 from "@angular/core"; /** * Represents the Kendo UI for Angular Chart Legend Inactive Items configuration. * * @example * * ```html * <kendo-chart> * <kendo-chart-legend> * <kendo-chart-legend-inactive-items [labels]="{color: 'pink'}"></kendo-chart-legend-inactive-items> * </kendo-chart-legend> * </kendo-chart> * ``` */ export declare class LegendInactiveItemsComponent extends SettingsComponent implements LegendInactiveItems { configurationService: ConfigurationService; /** * Specifies the labels configuration for inactive legend items. */ labels: LegendLabels; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration<LegendInactiveItemsComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<LegendInactiveItemsComponent, "kendo-chart-legend-inactive-items", never, { "labels": { "alias": "labels"; "required": false; }; }, {}, never, never, true, never>; }