import { getBase } from '../../utils/chartOption/base'; const Rose = (config: any) => { const base: any = getBase(); base.chart.type = 'variablepie'; base.chart.spacingBottom = 40; base.tooltip.enabled = !1; base.series = [{size: 350, innerSize: '20%', minPointSize: 80, ...config.series[0]}]; base.plotOptions.series.dataLabels = { useHTML: !0, style: { fontWeight: 400, color: '#666', } }; base.plotOptions.series.states = { hover: { enabled: !1 }, inactive: false, }; return base; }; export { Rose };