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.

31 lines (30 loc) 1.14 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 { NoteLine, SeriesNoteVisualArgs } from '../../common/property-types'; import { SeriesDefaultsNotesIcon } from './notes.icon.interface'; import { SeriesDefaultsNotesLabel } from './notes.label.interface'; /** * Represents the configuration options of the series notes. */ export interface SeriesDefaultsNotes { /** * Specifies the line of the notes. */ line?: NoteLine; /** * Specifies a function for creating a custom visual for the notes. * */ visual?: (e: SeriesNoteVisualArgs) => drawing.Element; /** * Specifies the icon of the notes. */ icon?: SeriesDefaultsNotesIcon; /** * Specifies the label of the notes. */ label?: SeriesDefaultsNotesLabel; }