kirjs / react-highcharts

React wrapper for Highcharts library
http://kirjs.github.io/react-highcharts/
MIT License
1.26k stars 233 forks source link

How to apply Highchart themes in ReactHighstock? #391

Closed ajeshb closed 6 years ago

ajeshb commented 6 years ago

I need to add dark blue theme of Highcharts in ReactHighstock. I did not find any documentation of the same. Can you help me? @kirjs

ilyjs commented 6 years ago

Hi @ajeshb ! You need import NameTheme from 'highcharts/themes/name-theme'; and NameTheme(ReactHighcharts.Highcharts);

https://stackblitz.com/edit/highcharts-87w46s?file=Highchart.js

ajeshb commented 6 years ago

It worked @ilyjs. Thanks