如何设计类似于 WHO Coronavirus Disease (COVID-19) Dashboard 的 React 组件?
How to design a React component similar to WHO Coronavirus Disease (COVID-19) Dashboard?
我想设计一个类似于
的地图组件
WHO Coronavirus Disease (COVID-19) Dashboard map component. for a particular country, where different regions can be selected based on a prop.
WHO Coronavirus Disease (COVID-19) Dashboard
any references or guidance would be much helpful. I have no clue to do it. don't downvote it
首先,您需要像 https://d3js.org/ 这样的图表库才能绘制图表。我发现 D3js 是所有库中最灵活的。
然后您可以将数据库中的数据集成到库提供的绘图方法中
D3js 绘图示例:
其他绘图库
- Google 图表:https://developers.google.com/chart/interactive/docs/gallery
- Highcharts:https://www.highcharts.com/demo/maps
- JS charting:https://jscharting.com/examples/chart-types/geographic-map/
- 剧情:https://plotly.com/javascript/
我想设计一个类似于
的地图组件WHO Coronavirus Disease (COVID-19) Dashboard map component. for a particular country, where different regions can be selected based on a prop.
WHO Coronavirus Disease (COVID-19) Dashboard
any references or guidance would be much helpful. I have no clue to do it. don't downvote it
首先,您需要像 https://d3js.org/ 这样的图表库才能绘制图表。我发现 D3js 是所有库中最灵活的。
然后您可以将数据库中的数据集成到库提供的绘图方法中
D3js 绘图示例:
其他绘图库
- Google 图表:https://developers.google.com/chart/interactive/docs/gallery
- Highcharts:https://www.highcharts.com/demo/maps
- JS charting:https://jscharting.com/examples/chart-types/geographic-map/
- 剧情:https://plotly.com/javascript/