anajavi
anajavi
Here's a one way to use svg renderer: https://stackblitz.com/edit/base-chart-example-wkndg9?file=MyChart.js
This could be done without the oneToOne option too. All the updates could be centralised to the BaseChart so that individual components such as Series declare their desired state to...
There was a warning in early hooks conversion code: https://github.com/whawker/react-jsx-highcharts/blob/357cbeec6d05bfb12f9b24027a53cace238be97e/packages/react-jsx-highcharts/src/components/Series/Series.js#L34-L39 However the axis can be null on first render, if axis is not in the context yet. So warning about...
Found something interesting, which is included in the coming [docusaurus v2](https://v2.docusaurus.io/docs/markdown-features#embedding-react-components). React components can be embedded in page using [MDX](https://mdxjs.com/). That would be really helpful when writing component api docs....
The work-in-progress react-leaflet docusaurus site includes live editor: https://react-leaflet-v3.now.sh
It overrides class prototype methods, so it should bleed all instances created. About the HOC: Wouldn't that bleed to other charts mounted at the same time? If there are several...
Highcharts instantiates chart.pointer on first render. The intance methods can be modified in some "after first render" event hook. That way the global Pointer prototype is not polluted. Something like...
You could try with: ```javascript getChart = chart => { this.chart = chart; this.chart.update.bind(chart); } ```
This is a bug on Highcharts side. I created a reproduction with pure Highcharts in https://jsfiddle.net/vopcu8mt/
I created a issue in Highcharts repository: https://github.com/highcharts/highcharts/issues/12067