devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
25 lines (24 loc) • 962 B
TypeScript
/**
* DevExpress HTML/JS Reporting (common\utils\_chartUtils.d.ts)
* Version: 25.2.3
* Build date: Dec 15, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import * as ko from 'knockout';
import { ISerializableModel } from '@devexpress/analytics-core/analytics-utils';
export interface IChartComponentInfo {
component?: IChartComponent | IChartComponent[];
path: string;
}
export interface IXRChartComponentInfo {
component: IChartComponent;
path: string;
displayPath: string;
}
export interface IChartComponent extends ISerializableModel {
getChildComponents?: () => IChartComponentInfo[];
getExpressionProperties?: () => string[];
name?: ko.Observable<string> | ko.Computed<string>;
}
export declare function getChartChildComponents(chartComponent: IChartComponent, path: string, displayPath?: string): IXRChartComponentInfo[];