我的recharts组件有一个非常简单的数据数组:
{name: '12.1.2011', series1: 4000, series2: 2400, series3: 2400},
{name: '12.2.2011', series1: 3000, series2: 1398, series3: 2210},
{name: '12.3.2011', series1: 2000, series2: 9800, series3: 2290}
我想在我的图例中为系列值添加标签。而不是图表显示“series1”、“series2”和“series3”的不同颜色。
当然,我已经可以在 JSON 中设置我想用于我的图例的实际值,但这看起来不正确。例如:
{name: '12.1.2011', 'My nice long descriptive text': 4000, 'Some other text': 2400, 'Some other descriptive text': 2400},
{name: '12.2.2011', 'My nice long descriptive text': 3000, 'Some other text': 1398, 'Some other descriptive text: 2210},
{name: '12.3.2011', 'My nice long descriptive text': 2000, 'Some other text': 9800, 'Some other descriptive text: 2290}
我需要将我的系列级别映射到描述性标签。
我查看了 Legend中的内容: http ://recharts.org/#/en-US/api/Legend ,但这似乎更关心完全重写 Legend 组件。