起步

1. 选择图表类型

借助于babel-plugin-recharts ,我们可以只引入需要的组件,以达到减小项目体积的目的。

传入简单的js对象(通常是一个数组)生成简单的图表。

  1. import { LineChart, Line } from 'recharts';
  2. const data = [{name: 'Page A', uv: 400, pv: 2400, amt: 2400}, ...];
  3. const renderLineChart = (
  4. <LineChart width={400} height={400} data={data}>
  5. <Line type="monotone" dataKey="uv" stroke="#8884d8" />
  6. </LineChart>
  7. ) ;

起步 - 图1

2. 添加需要的组件

例如, LineChart 可以添加组件 XAxis, YAxis, Legend, CartesianGrid, 等等。

  1. import { LineChart, Line, CartesianGrid, XAxis, YAxis } from 'recharts';
  2. const data = [{name: 'Page A', uv: 400, pv: 2400, amt: 2400}, ...];
  3. const renderLineChart = (
  4. <LineChart width={600} height={300} data={data}>
  5. <Line type="monotone" dataKey="uv" stroke="#8884d8" />
  6. <CartesianGrid stroke="#ccc" />
  7. <XAxis dataKey="name" />
  8. <YAxis />
  9. </LineChart>
  10. ) ;

起步 - 图2

3. 调整部分组件的配置

例如,可以调整 margin-right 的值来保证有足够的空间展示 x 轴最右侧的刻度,也可以调整网格的线型。

  1. import { LineChart, Line, CartesianGrid, XAxis, YAxis } from 'recharts';
  2. const data = [{name: 'Page A', uv: 400, pv: 2400, amt: 2400}, ...];
  3. const renderLineChart = (
  4. <LineChart width={600} height={300} data={data} margin={{ top: 5, right: 20, bottom: 5, left: 0 }}>
  5. <Line type="monotone" dataKey="uv" stroke="#8884d8" />
  6. <CartesianGrid stroke="#ccc" strokeDasharray="5 5" />
  7. <XAxis dataKey="name" />
  8. <YAxis />
  9. </LineChart>
  10. ) ;

起步 - 图3

4. 丰富交互

添加 Tooltip 组件就能很简单的实现浮窗展示提示信息的功能。

  1. import { LineChart, Line, CartesianGrid, XAxis, YAxis, Tooltip } from 'recharts';
  2. const data = [{name: 'Page A', uv: 400, pv: 2400, amt: 2400}, ...];
  3. const renderLineChart = (
  4. <LineChart width={600} height={300} data={data} margin={{ top: 5, right: 20, bottom: 5, left: 0 }}>
  5. <Line type="monotone" dataKey="uv" stroke="#8884d8" />
  6. <CartesianGrid stroke="#ccc" strokeDasharray="5 5" />
  7. <XAxis dataKey="name" />
  8. <YAxis />
  9. <Tooltip />
  10. </LineChart>
  11. ) ;

起步 - 图4

5. 实现自定义功能

例如,你可以通过传入自定义的刻度函数来实现定制化的功能,当然其他的组件也支持类似的功能,比如 Bar 组件也能接收自定义的 shape 组件或者 shape 函数。

  1. import { LineChart, Line, CartesianGrid, XAxis, YAxis, Tooltip } from 'recharts';
  2. const data = [{name: 'Page A', uv: 400, pv: 2400, amt: 2400}, ...];
  3. const renderCustomAxisTick = ({ x, y, payload }) => {
  4. let path = '';
  5. switch (payload.value) {
  6. case 'Page A':
  7. path = 'M899.072 99.328q9.216 13.312 17.92 48.128t16.384 81.92 13.824 100.352 11.264 102.912 9.216 90.112 6.144 60.928q4.096 30.72 7.168 70.656t5.632 79.872 4.096 75.264 2.56 56.832q-13.312 16.384-30.208 25.6t-34.304 11.264-34.304-2.56-30.208-16.896q-1.024-10.24-3.584-33.28t-6.144-53.76-8.192-66.56-8.704-71.68q-11.264-83.968-23.552-184.32-7.168 37.888-11.264 74.752-4.096 31.744-6.656 66.56t-0.512 62.464q1.024 18.432 3.072 29.184t4.608 19.968 5.12 21.504 5.12 34.304 5.12 56.832 4.608 90.112q-11.264 24.576-50.688 42.496t-88.576 29.696-97.28 16.896-74.752 5.12q-18.432 0-46.08-2.56t-60.416-7.168-66.048-12.288-61.952-17.92-49.664-24.064-28.16-30.208q2.048-55.296 5.12-90.112t5.632-56.832 5.12-34.304 5.12-21.504 4.096-19.968 3.584-29.184q2.048-27.648-0.512-62.464t-6.656-66.56q-4.096-36.864-11.264-74.752-13.312 100.352-24.576 184.32-5.12 35.84-9.216 71.68t-8.192 66.56-6.656 53.76-2.56 33.28q-13.312 12.288-30.208 16.896t-34.304 2.56-33.792-11.264-29.696-25.6q0-21.504 2.048-56.832t4.096-75.264 5.632-79.872 6.656-70.656q2.048-20.48 6.144-60.928t9.728-90.112 11.776-102.912 13.824-100.352 16.384-81.92 17.92-48.128q20.48-12.288 56.32-25.6t73.216-26.624 71.168-25.088 50.176-22.016q10.24 13.312 16.896 61.44t13.312 115.712 15.36 146.432 23.04 153.6l38.912-334.848-29.696-25.6 43.008-54.272 15.36 2.048 15.36-2.048 43.008 54.272-29.696 25.6 38.912 334.848q14.336-74.752 23.04-153.6t15.36-146.432 13.312-115.712 16.896-61.44q16.384 10.24 50.176 22.016t71.168 25.088 73.216 26.624 56.32 25.6';
  8. break;
  9. case 'Page B':
  10. path = 'M662.528 451.584q10.24 5.12 30.208 16.384t46.08 31.744 57.856 52.736 65.024 80.896 67.072 115.2 64.512 154.624q-15.36 9.216-31.232 21.504t-31.232 22.016-31.744 15.36-32.768 2.56q-44.032-9.216-78.336-8.192t-62.976 7.68-53.248 16.896-47.616 19.968-46.08 16.384-49.664 6.656q-57.344-1.024-110.592-16.896t-101.376-32.256-89.6-25.088-75.264 4.608q-20.48 8.192-41.984 1.024t-38.912-18.432q-20.48-13.312-39.936-33.792 37.888-116.736 86.016-199.68t92.672-136.704 78.848-81.408 43.52-33.792q9.216-5.12 10.24-25.088t-1.024-40.448q-3.072-24.576-9.216-54.272l-150.528-302.08 180.224-29.696q27.648 52.224 53.76 79.36t50.176 36.864 45.568 5.12 39.936-17.92q43.008-30.72 80.896-103.424l181.248 29.696q-20.48 48.128-45.056 99.328-20.48 44.032-47.616 97.28t-57.856 105.472q-12.288 34.816-13.824 57.344t1.536 36.864q4.096 16.384 12.288 25.6z';
  11. break;
  12. ...
  13. default:
  14. path = '';
  15. }
  16. return (
  17. <svg x={x - 12} y={y + 4} width={24} height={24} viewBox="0 0 1024 1024" fill="#666">
  18. <path d={path} />
  19. </svg>
  20. ) ;
  21. };
  1. const renderLineChart = (
  2. <LineChart width={600} height={300} data={data} margin={{ top: 5, right: 20, bottom: 5, left: 0 }}>
  3. <Line type="monotone" dataKey="uv" stroke="#8884d8" />
  4. <CartesianGrid stroke="#ccc" strokeDasharray="5 5" />
  5. <XAxis dataKey="name" tick={renderCustomAxisTick} />
  6. <YAxis />
  7. <Tooltip />
  8. </LineChart>
  9. ) ;

起步 - 图5