@zhsz/cool-design-dv
Version:
31 lines (30 loc) • 856 B
TypeScript
/**
* 创建基础系列
*/
export declare function baseSeries(type: any, layout: any, dimensions: any, settings: any): any;
/**
* 构建饼图序列配置
* @param dimensions
* @param source
* @param settings
* @return {*}
*/
export declare function createPieSeries({ dimensions, source, settings }: {
dimensions: any;
source: any;
settings: any;
}): any;
/**
* 创建系列
* @param {string} type 图表类型
* @param {string} layout 用行还是列对应到系列上,即 echarts 的配置seriesLayoutBy, 可选:column | row ,默认:column
* @param {Object[]} dimensions 维度
* @param {Object} settings 私有配置
* @return {Object[]}
*/
export declare function createSeries({ type, layout, dimensions, settings }: {
type: any;
layout?: string | undefined;
dimensions: any;
settings: any;
}): any;