Files
frontend/apps/web-antd/src/views/mall/home/modules/member-terminal-chart-options.ts

32 lines
529 B
TypeScript

/**
* 会员终端统计图配置
*/
export function getTerminalChartOptions(data: any[]): any {
return {
tooltip: {
trigger: 'item',
confine: true,
formatter: '{a} <br/>{b} : {c} ({d}%)',
},
legend: {
orient: 'vertical',
left: 'right',
},
roseType: 'area',
series: [
{
name: '会员终端',
type: 'pie',
label: {
show: false,
},
labelLine: {
show: false,
},
data,
},
],
};
}