/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { drawing } from '@progress/kendo-drawing'; import { ConfigurationService } from '../../common/configuration.service'; import { AxisNoteVisualArgs, NoteLine, NotePosition } from '../../common/property-types'; import { CategoryAxisNotes, CategoryAxisNotesIcon, CategoryAxisNotesLabel } from '../../common/property-types'; import { SettingsComponent } from '../../common/settings.component'; import * as i0 from "@angular/core"; /** * Configures the notes for the category axis in the Chart ([see example](https://www.telerik.com/kendo-angular-ui/components/charts/elements/notes#setting-up-axis-notes)) */ export declare class CategoryAxisNotesComponent extends SettingsComponent implements CategoryAxisNotes { configurationService: ConfigurationService; /** * Defines the data items for the notes. */ data: any[]; /** * Specifies the line configuration of the notes. */ line: NoteLine; /** * Sets the position of the notes. */ position: NotePosition; /** * Provides a function that creates a custom visual for the notes. */ visual: (e: AxisNoteVisualArgs) => drawing.Element; /** * Specifies the icon configuration of the notes. */ icon: CategoryAxisNotesIcon; /** * Specifies the label configuration of the notes. */ label: CategoryAxisNotesLabel; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }