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

29 lines
526 B
TypeScript

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