如何使用 React Recharts 只绘制直线
how to draw only straight lines using react recharts
我尝试使用 React Recharts。我需要这样的图表 chart with straight lines
但我不能画直线。我尝试使用但出了点问题
<Line points={[{x:0, y:900}, {x:dataWithDay.lenght-1, y:900}]} stroke="gray" dot={false}/>
我不清楚数组点中的值是什么意思。如果我理解得很好,x 和 y 是 XAxis 和 YAxis 的坐标。这条线画任何东西
我想你的意思是 ReferenceLine。
我尝试使用 React Recharts。我需要这样的图表 chart with straight lines 但我不能画直线。我尝试使用但出了点问题
<Line points={[{x:0, y:900}, {x:dataWithDay.lenght-1, y:900}]} stroke="gray" dot={false}/>
我不清楚数组点中的值是什么意思。如果我理解得很好,x 和 y 是 XAxis 和 YAxis 的坐标。这条线画任何东西
我想你的意思是 ReferenceLine。