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.

45 lines (44 loc) 1.58 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { CategoryAxis, Pane, Series } from '../../common/property-types'; import { NavigatorHint } from './navigator/hint.interface'; import { NavigatorSelect } from './navigator/select.interface'; /** * Represents the configuration options of the navigator. */ export interface Navigator { /** * Specifies the visibility of the navigator. */ visible?: boolean; /** * Specifies the configuration options of the category axis. */ categoryAxis?: CategoryAxis; /** * Specifies the default options of the navigator hint. */ hint?: NavigatorHint; /** * Specifies the navigator pane configuration. */ pane?: Pane; /** * Specifies the position of the navigator. * By default, the navigator is positioned at the bottom. */ position?: 'top' | 'bottom'; /** * Specifies the initially selected range. * If no range is specified, the full range of values is shown. */ select?: NavigatorSelect; /** * An array of series definitions. * Accepts the same options as the root series collection. * Omitting the array and specifying a single series is also acceptable. */ series?: Series | Series[]; }