@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.
27 lines (26 loc) • 1 kB
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Group } from '@progress/kendo-drawing';
import { ChartAxis } from './chart-axis.interface';
/**
* Represents the Chart panes interface.
*/
export interface ChartPane {
/**
* Specifies the `Group` which holds the Drawing elements of the Chart.
*/
chartsVisual: Group;
/**
* Specifies the Drawing `Group` that is used to draw the pane.
*/
visual: Group;
/**
* Returns the axis from the pane with the specified name.
*
* @param {string} name The name of the axis.
* @returns {ChartAxis} The axis with the corresponding name.
*/
findAxisByName(name: string): ChartAxis;
}