mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-07-29 14:57:35 +00:00
Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: 谨欣 <echo.cmy@antgroup.com> Co-authored-by: 严志勇 <yanzhiyong@tiansuixiansheng.com> Co-authored-by: yanzhiyong <932374019@qq.com>
76 lines
2.5 KiB
TypeScript
76 lines
2.5 KiB
TypeScript
import { Datum } from '@antv/ava';
|
|
import { hasSubset } from '../advisor/utils';
|
|
import type { ChartKnowledge, CustomChart, GetChartConfigProps, Specification } from '../types';
|
|
import { findNominalField, findOrdinalField, getLineSize, processDateEncode, sortData } from './util';
|
|
|
|
const MULTI_MEASURE_LINE_CHART = 'multi_measure_line_chart';
|
|
const getChartSpec = (data: GetChartConfigProps['data'], dataProps: GetChartConfigProps['dataProps']) => {
|
|
try {
|
|
// 优先确认 x 轴,如果没有枚举类型字段,取第一个字段为 x 轴
|
|
const field4Nominal = findNominalField(dataProps) ?? findOrdinalField(dataProps) ?? dataProps[0];
|
|
|
|
const field4Y = dataProps?.filter(
|
|
field => field.name !== field4Nominal?.name && hasSubset(field.levelOfMeasurements, ['Interval']),
|
|
);
|
|
if (!field4Nominal || !field4Y) return null;
|
|
|
|
const spec: Specification = {
|
|
type: 'view',
|
|
data: sortData({ data, chartType: MULTI_MEASURE_LINE_CHART, xField: field4Nominal }),
|
|
children: [],
|
|
};
|
|
|
|
field4Y?.forEach(field => {
|
|
const singleLine: Specification = {
|
|
type: 'line',
|
|
encode: {
|
|
x: processDateEncode(field4Nominal.name as string, dataProps),
|
|
y: field.name,
|
|
color: () => field.name,
|
|
series: () => field.name,
|
|
size: (datum: Datum) => getLineSize(datum, data, { field4X: field4Nominal }),
|
|
},
|
|
legend: {
|
|
size: false,
|
|
},
|
|
};
|
|
spec.children.push(singleLine);
|
|
});
|
|
return spec;
|
|
} catch (err) {
|
|
console.log(err);
|
|
return null;
|
|
}
|
|
};
|
|
|
|
const ckb: ChartKnowledge = {
|
|
id: MULTI_MEASURE_LINE_CHART,
|
|
name: 'multi_measure_line_chart',
|
|
alias: ['multi_measure_line_chart'],
|
|
family: ['LineCharts'],
|
|
def: 'multi_measure_line_chart uses lines with segments to show changes in data in a ordinal dimension',
|
|
purpose: ['Comparison', 'Distribution'],
|
|
coord: ['Cartesian2D'],
|
|
category: ['Statistic'],
|
|
shape: ['Lines'],
|
|
dataPres: [
|
|
{ minQty: 1, maxQty: '*', fieldConditions: ['Interval'] },
|
|
{ minQty: 1, maxQty: 1, fieldConditions: ['Nominal'] },
|
|
],
|
|
channel: ['Color', 'Direction', 'Position'],
|
|
recRate: 'Recommended',
|
|
toSpec: getChartSpec,
|
|
};
|
|
|
|
/* 订制一个图表需要的所有参数 */
|
|
export const multi_measure_line_chart: CustomChart = {
|
|
/* 图表唯一 Id */
|
|
chartType: 'multi_measure_line_chart',
|
|
/* 图表知识 */
|
|
chartKnowledge: ckb as ChartKnowledge,
|
|
/** 图表中文名 */
|
|
chineseName: '折线图',
|
|
};
|
|
|
|
export default multi_measure_line_chart;
|