@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.
30 lines (29 loc) • 1.97 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 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 { XAxisNotes, XAxisNotesIcon, XAxisNotesLabel } from '../../common/property-types';
import { SettingsComponent } from '../../common/settings.component';
import * as i0 from "@angular/core";
/**
* The configuration of the X-axis notes.
* For an example on the basic usage of the XAxisNotesComponent,
* refer to the [demo on the XAxisComponent]({% slug api_charts_xaxiscomponent %})
* or to the documentation about the
* [axis notes]({% slug notes_chart_charts %}#toc-axis-notes).
*/
export declare class XAxisNotesComponent extends SettingsComponent implements XAxisNotes {
configurationService: ConfigurationService;
data: any[];
line: NoteLine;
position: NotePosition;
visual: (e: AxisNoteVisualArgs) => drawing.Element;
icon: XAxisNotesIcon;
label: XAxisNotesLabel;
constructor(configurationService: ConfigurationService);
static ɵfac: i0.ɵɵFactoryDeclaration<XAxisNotesComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<XAxisNotesComponent, "kendo-chart-x-axis-item-notes", never, { "data": { "alias": "data"; "required": false; }; "line": { "alias": "line"; "required": false; }; "position": { "alias": "position"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, {}, never, never, true, never>;
}