/**----------------------------------------------------------------------------------------- * 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, MarkerType } from '../../common/property-types'; import { ValueAxisNotesIcon } from '../../common/property-types'; import { SettingsComponent } from '../../common/settings.component'; import * as i0 from "@angular/core"; /** * Represents the configuration of the notes icon in the Chart value axis. */ export declare class ValueAxisNotesIconComponent extends SettingsComponent implements ValueAxisNotesIcon { configurationService: ConfigurationService; /** * Specifies the background color of the icon. */ background: string; /** * Specifies the border configuration of the icon. */ border: Border; /** * Specifies the size of the icon. */ size: number; /** * Specifies the shape of the notes icon. * @default 'circle' */ type: MarkerType; /** * Determines whether the notes icon is visible. * @default true */ visible: boolean; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }