You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see there have been commits since then, so I'm curious how this library compares with the official wrapper. BTW, thanks for explaining in the README how it compares with other libraries!
The text was updated successfully, but these errors were encountered:
I believe my library provides a simpler way for React to interact with a Highcharts chart, by providing an abstraction layer.
All the official Highcharts wrapper does is take a large configuration option and call this.chart.update. Which is largely fine for static charts, however for more complex use cases where the chart needs to be dynamic, you need to learn the Highcharts API to update your chart's configuration
I believe my library hides all that Highcharts complexity away. For instance the application author does not need to know that you should call chart.series[0].setData([ /* array */]) to update the data in the first series. Instead just simply to update the data prop on the relevant series component.
I also believe my library feels more like "React", I think passing around large configuration objects in a old jQuery-esque style doesn't translate well to React applications.
Hi Will, I read your blog post about this library, and saw the link at the top pointing to the official React wrapper for Highcharts, which they released on April 11.
I see there have been commits since then, so I'm curious how this library compares with the official wrapper. BTW, thanks for explaining in the README how it compares with other libraries!
The text was updated successfully, but these errors were encountered: