import { IPSDEChart } from '@ibizstudio/runtime'; import { ControlServiceBase } from '@ibizstudio/runtime'; /** * 图表部件服务对象 * * @export * @class AppChartService */ export declare class AppChartService extends ControlServiceBase { /** * 图表实例对象 * * @memberof AppChartService */ controlInstance: IPSDEChart; /** * 数据服务对象 * * @type {any} * @memberof AppChartService */ appEntityService: any; /** * 初始化服务参数 * * @type {boolean} * @memberof AppChartService */ initServiceParam(opts: any): Promise; /** * Creates an instance of AppChartService. * * @param {*} [opts={}] * @memberof AppChartService */ constructor(opts?: any, context?: any); /** * 加载服务参数 * * @type {boolean} * @memberof AppChartService */ loaded(opt: any): Promise; /** * 查询数据 * * @param {string} action * @param {*} [context={}] * @param {*} [data={}] * @param {boolean} [isloading] * @returns {Promise} * @memberof AppChartService */ search(action: string, context?: any, data?: any, isloading?: boolean): Promise; } //# sourceMappingURL=app-chart-service.d.ts.map