diff --git a/src/views/Company/components/ForecastReport/components/IncomeProfitGrowthChart.tsx b/src/views/Company/components/ForecastReport/components/IncomeProfitGrowthChart.tsx index 0e33b2e8..9c99bdfe 100644 --- a/src/views/Company/components/ForecastReport/components/IncomeProfitGrowthChart.tsx +++ b/src/views/Company/components/ForecastReport/components/IncomeProfitGrowthChart.tsx @@ -61,7 +61,11 @@ const IncomeProfitGrowthChart: React.FC = ({ }, legend: { ...BASE_CHART_CONFIG.legend, - data: ['营业总收入', '归母净利润', '营收增长率'], + data: [ + { name: '营业总收入', itemStyle: { color: CHART_COLORS.income } }, + { name: '归母净利润', itemStyle: { color: CHART_COLORS.profit } }, + { name: '营收增长率', itemStyle: { color: CHART_COLORS.growth } }, + ], bottom: 0, }, grid: {