/**----------------------------------------------------------------------------------------- * 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 { Border, HighlightLine, HighlightToggleArgs, HighlightVisualArgs, MarkersHighlight } from '../../common/property-types'; import { SeriesHighlight } from '../../common/property-types'; import { SettingsComponent } from '../../common/settings.component'; import * as i0 from "@angular/core"; /** * Represents the Chart series highlighting configuration options. */ export declare class SeriesHighlightComponent extends SettingsComponent implements SeriesHighlight { configurationService: ConfigurationService; /** * Specifies the border configuration of the highlight. */ border: Border; /** * Specifies the color of the highlight. */ color: string; /** * Specifies the line configuration of the highlight. */ line: HighlightLine; /** * Specifies the markers configuration of the highlight. */ markers: MarkersHighlight; /** * Specifies the opacity of the highlight. */ opacity: number; /** * Specifies a function that handles the highlight toggle event. */ toggle: (e: HighlightToggleArgs) => void; /** * Determines whether the Chart highlights the series when the user hovers over it with the mouse. * @default true */ visible: boolean; /** * Specifies a function that creates a custom visual for the highlight. */ visual: (e: HighlightVisualArgs) => drawing.Element; constructor(configurationService: ConfigurationService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }