@progress/kendo-vue-charts
Version:
23 lines (22 loc) • 1.06 kB
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
import { BaseChartProps } from './BaseChartProps';
import { NavigatorFilterEvent } from './common/events';
/**
* Represents the props of the Kendo UI for Vue Native StockChart component.
*/
export interface StockChartProps extends BaseChartProps {
/**
* Specifies whether the StockChart will perform full or partial redraw upon re-render. The partial redraw is required when the `onNavigatorFilter` event is handled and the data for the main panes is limited to a specific set. The default value is `false`.
*/
partialRedraw?: boolean;
/**
* Fires when the navigator range is changed.
*/
onNavigatorfilter?: (event: NavigatorFilterEvent) => void;
}