@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.
34 lines (33 loc) • 1.15 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2024 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, NotePosition, SeriesNoteVisualArgs } from '../../common/property-types';
import { SeriesNotesIcon } from './notes.icon.interface';
import { SeriesNotesLabel } from './notes.label.interface';
/**
* The configuration options of the series notes.
*/
export interface SeriesNotes {
/**
* The line of the series notes.
*/
line?: NoteLine;
/**
* The position of the series note.
*/
position?: NotePosition;
/**
* A function for creating a custom visual for the notes.
*/
visual?: (e: SeriesNoteVisualArgs) => drawing.Element;
/**
* The icon of the notes.
*/
icon?: SeriesNotesIcon;
/**
* The label of the notes.
*/
label?: SeriesNotesLabel;
}