How to create a HighCharts chart in react

前端 未结 3 979
-上瘾入骨i
-上瘾入骨i 2021-01-16 13:27

How can I create a component with a HighCharts chart, that create the chart ones on the first render and only update the series data when new data comes in using chart

3条回答
  •  鱼传尺愫
    2021-01-16 13:37

    I have made a library called React JSX Highcharts, which might be what you're looking for. GitHub / NPM

    It allows you to create Highcharts charts with React components. So to update the series data, would just need to pass an updated data prop.

    Behind the scenes, React JSX Highcharts would call setData for you.

    Example

    
      
    
      My Highcharts Chart
    
      
    
      
        Time
      
    
      
        My Axis Title
        
        
      
    
    

提交回复
热议问题