/** * @description: 图表配置 * @param {type} * @return {type} */ /** 分类色板 * */ export declare const typeColor: string[]; /** 扩展色板 * */ export declare const extColor: string[]; /** 基础共用配置 */ export declare const baseConfig: { padding: string; color: string[]; xAxis: { tickCount: number; label: { autoHide: boolean; style: { fontSize: number; fill: string; }; }; tickLine: { style: { stroke: string; lineWidth: number; }; }; }; yAxis: { line: { style: { stroke: string; lineWidth: number; }; }; label: { style: { fontSize: number; fill: string; }; }; grid: { line: { style: { stroke: string; lineWidth: number; }; }; }; }; legend: { position: string; layout: string; maxWidth: number; flipPage: boolean; marker: { symbol: string; spacing: number; }; }; };