/**----------------------------------------------------------------------------------------- * Copyright © 2026 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 { SettingsComponent } from '../../common/settings.component'; import { Border, NoteLabelPosition, SeriesNoteContentArgs } from '../../common/property-types'; import { SeriesDefaultsNotesLabel } from '../../common/property-types'; import * as i0 from "@angular/core"; /** * Represents the configuration of the Chart notes label. */ export declare class SeriesDefaultsNotesLabelComponent extends SettingsComponent implements SeriesDefaultsNotesLabel { configurationService: ConfigurationService; /** * Specifies the background color of the notes label. */ background: string; /** * Specifies the border configuration of the notes label. */ border: Border; /** * Specifies the text color of the notes label. */ color: string; /** * Specifies a function that returns the content of the notes label. */ content: (e: SeriesNoteContentArgs) => string; /** * Specifies the font style of the label. * @default '12px sans-serif' */ font: string; /** * Specifies the format for displaying the notes label. Uses the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) method of `IntlService`. * Contains one placeholder (`"{0}"`) which represents the axis value. * @default '{0}' */ format: string; /** * Specifies the position of the labels. * @default 'inside' */ position: NoteLabelPosition; /** * Specifies the rotation angle of the label. By default, the label is not rotated. * @default 0 */ rotation: number; /** * Determines whether the Chart displays the [`seriesDefaults`](https://www.telerik.com/kendo-angular-ui/components/charts/api/seriesdefaults) notes label. * @default true */ visible: boolean; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }