/**----------------------------------------------------------------------------------------- * Copyright © 2026 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; }