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.

38 lines (37 loc) 1.27 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 { AxisNoteVisualArgs, NoteLine, NotePosition } from '../../common/property-types'; import { XAxisNotesIcon } from './notes.icon.interface'; import { XAxisNotesLabel } from './notes.label.interface'; /** * Represents the configuration options of the X-axis notes. */ export interface XAxisNotes { /** * Specifies the items of the notes. */ data?: any[]; /** * Specifies the line of the notes. */ line?: NoteLine; /** * Specifies the position of the X-axis note. */ position?: NotePosition; /** * Specifies a function for creating custom visuals for the notes. */ visual?: (e: AxisNoteVisualArgs) => drawing.Element; /** * Specifies the icon of the notes. */ icon?: XAxisNotesIcon; /** * Specifies the label of the notes. */ label?: XAxisNotesLabel; }