ErrorBar

ErrorBar - 图1

  • ErrorBar - 图2A school

显示数据格式

  1. <ScatterChart
  2. width={730}
  3. height={250}
  4. margin={{ top: 20, right: 20, bottom: 0, left: 20 }}
  5. >
  6. <CartesianGrid />
  7. <XAxis dataKey="x" type="number" name="stature" unit="cm" />
  8. <YAxis dataKey="y" type="number" name="weight" unit="kg" />
  9. <Tooltip />
  10. <Scatter name="A school" data={data} fill="#ff7300">
  11. <ErrorBar dataKey="errorY" width={4} strokeWidth={2} stroke="green" direction="y" />
  12. <ErrorBar dataKey="errorX" width={0} strokeWidth={1} stroke="blue" opacity={0.8} direction="x" />
  13. </Scatter>
  14. <Legend/>
  15. </ScatterChart>

父组件

Properties

展示误差线对应的数据的 key。当对应的元素是一个数值时,会用来展示对称的误差线。当对应的元素是一个二元数组时,可以用来设置非对称的误差线。

误差线的宽度。

默认值:5

误差线的宽度。

默认值:1.5

误差线的颜色。

默认值:black

当绘制散点图的的误差线时,用来设置方向。当值为 "x" 时,表示平行于 x 轴方向的误差线。当值为 "y" 时,表示平行于 y 轴方向的误差线。