import React from 'react'; import './index.less'; import PieChart from '@src/components/PieChart'; function makePie(text, subtext, color, data) { return { title: { text, textAlign: 'center', textVerticalAlign: 'middle', textStyle: { fontSize: 14, color: '#686872' }, subtext, subtextStyle: { fontSize: 16, color: '#303036' }, top: '28%', left: '45%', }, color, series: [ { type: 'pie', radius: ['85%', '100%'], hoverAnimation: false, animation: false, label: { show: false, }, data, }, ], }; } export default function Ratio(props) { const { text, subtext, values, size = 'basic' } = props; return (