/**----------------------------------------------------------------------------------------- * 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 { SettingsComponent } from '../../common/settings.component'; import { Border, Margin, PaneDefaultsTitle } from '../../common/property-types'; import * as i0 from "@angular/core"; /** * Represents the default title configuration of all Chart panes. */ export declare class PaneDefaultsTitleComponent extends SettingsComponent implements PaneDefaultsTitle { configurationService: ConfigurationService; /** * Specifies the background color of the title. */ background: string; /** * Specifies the border configuration of the title. */ border: Border; /** * Specifies the text color of the title. */ color: string; /** * Specifies the font style of the title. * @default '16px sans-serif' */ font: string; /** * Specifies the margin of the title. A numeric value sets all margins. * @default 5 */ margin: Margin | number; /** * Specifies the position of the title. * * The positioning of the axis title can be set to `left` for left positioning, `right` for right positioning (both applicable to the horizontal axis), or `center` for positioning in the center. * @default 'center' */ position: 'left' | 'right' | 'center'; /** * Determines whether the Chart displays the pane title. * @default true */ visible: boolean; /** * Specifies a function that creates a custom visual for the title. */ visual: (e: any) => drawing.Element; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }