UNPKG

@progress/kendo-angular-chart-wizard

Version:

Kendo UI Angular Chart Wizard component

21 lines (20 loc) 932 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ import { GridComponent } from "@progress/kendo-angular-grid"; import { DataRow } from "../common"; /** * Maps the Grid `selectedKeys` to a general `DataRows` type for the Chart Wizard. * * The `selectedKeys` can be row keys or cell keys. * * @returns Returns a `DataRow[]` that you can pass to `getWizardDataFromDataRows` to bind the Chart Wizard. */ export declare function getGridSelectedRows(args: { grid: GridComponent; data: any[]; selectedKeys: any[]; selectionKey?: string; columnKey?: ((column: any, columnIndex: number) => any); }): DataRow[];