devexpress-reporting
Version:
DevExpress Reporting provides the capability to develop a reporting application to create and customize reports.
30 lines (29 loc) • 1.18 kB
TypeScript
/**
* DevExpress HTML/JS Reporting (designer\controls\utils\_chartUtils.d.ts)
* Version: 24.2.6
* Build date: Mar 18, 2025
* Copyright (c) 2012 - 2025 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { IPropertiesAccessibilityProvider } from '@devexpress/analytics-core/analytics-internal';
import * as ko from 'knockout';
import { IChartDesignerOptions } from '../../../chart/_initializer';
import { XRChartSurface } from '../xrChart';
export declare const createChartDesignerOptions: (designerModel: any, dataSourceHelper: any, model: any, parameters: any, chartValueBindingProvider: any, accessibilityProvider: IPropertiesAccessibilityProvider) => {
dispose: () => void;
options: IChartDesignerOptions;
visible: ko.Observable<boolean>;
buttons: {
toolbar: string;
location: string;
widget: string;
options: {
text: any;
type: string;
stylingMode: string;
onClick: () => void;
};
}[];
run: (chartSurface: XRChartSurface) => void;
container: (element: HTMLElement) => HTMLElement;
};