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.

35 lines (34 loc) 1.77 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { IntlService } from '@progress/kendo-angular-intl'; import { ConfigurationService } from '../../common/configuration.service'; import { CategoryAxisItemComponent } from '../../chart/category-axis-item.component'; import * as i0 from "@angular/core"; /** * Represents the category axis of the navigator in a Kendo UI Stock Chart. * * @example * * ```html * <kendo-stockchart> * <kendo-chart-navigator> * <kendo-chart-navigator-category-axis * color="maroon" * [labels]="{color: 'green'}"> * </kendo-chart-navigator-category-axis> * </kendo-chart-navigator> * </kendo-stockchart> * ``` * * @remarks * Supported children components are: {@link NavigatorCategoryAxisCrosshairComponent}, {@link NavigatorCategoryAxisLabelsComponent}, {@link NavigatorCategoryAxisNotesComponent}, * {@link NavigatorCategoryAxisSelectComponent}, and {@link NavigatorCategoryAxisTitleComponent} . */ export declare class NavigatorCategoryAxisComponent extends CategoryAxisItemComponent { protected configurationService: ConfigurationService; constructor(configurationService: ConfigurationService, intl: IntlService, localeId: string); static ɵfac: i0.ɵɵFactoryDeclaration<NavigatorCategoryAxisComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<NavigatorCategoryAxisComponent, "kendo-chart-navigator-category-axis", never, {}, {}, never, never, true, never>; }