/**----------------------------------------------------------------------------------------- * 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 { Border, Margin, Padding, SeriesLabelsContentArgs } from '../../common/property-types'; import { SeriesDefaultsLabelsFrom } from '../../common/property-types'; import { SettingsComponent } from '../../common/settings.component'; import * as i0 from "@angular/core"; /** * Represents the `from` label configuration of the Chart series. */ export declare class SeriesDefaultsLabelsFromComponent extends SettingsComponent implements SeriesDefaultsLabelsFrom { configurationService: ConfigurationService; /** * Specifies the background color of the `from` labels. */ background: string; /** * Specifies the border configuration of the `from` labels. */ border: Border; /** * Specifies the text color of the `from` labels. */ color: string; /** * Specifies a function that returns the content of the `from` labels. */ content: (e: SeriesLabelsContentArgs) => string; /** * Specifies the font style of the `from` labels. * @default '12px sans-serif' */ font: string; /** * Specifies the format of the `from` labels. Uses the [`format`](https://www.telerik.com/kendo-angular-ui/components/globalization/internationalization/api/intlservice#format) of `IntlService`. * @default '{0}' */ format: string; /** * Specifies the margin of the `from` labels. A numeric value sets all margins. * @default 0 */ margin: Margin | number; /** * Specifies the padding of the `from` labels. A numeric value sets all paddings. * @default 0 */ padding: Padding | number; /** * Determines whether the Chart displays the series `from` labels. * @default false */ visible: boolean; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }