UNPKG

@progress/kendo-angular-charts

Version:

Kendo UI Charts for Angular - A comprehensive package for creating beautiful and interactive data visualization. Every chart type, stock charts, and sparklines are included.

53 lines (52 loc) 2.63 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 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<SeriesHighlightComponent, never>; static ɵcmp: i0.ɵɵComponentDeclaration<SeriesHighlightComponent, "kendo-chart-series-item-highlight", never, { "border": { "alias": "border"; "required": false; }; "color": { "alias": "color"; "required": false; }; "line": { "alias": "line"; "required": false; }; "markers": { "alias": "markers"; "required": false; }; "opacity": { "alias": "opacity"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "visual": { "alias": "visual"; "required": false; }; }, {}, never, never, true, never>; }