{"id":22404616,"url":"https://github.com/xlsdg/react-highcharts-v5","last_synced_at":"2026-04-29T14:07:01.364Z","repository":{"id":79205275,"uuid":"118720586","full_name":"xlsdg/react-highcharts-v5","owner":"xlsdg","description":"React.js(v16.x+) component wrap for HighCharts.js(v6.x+)","archived":false,"fork":false,"pushed_at":"2018-12-01T13:21:30.000Z","size":299,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-04T16:49:36.270Z","etag":null,"topics":["chart","highcharts","library","react","react-component","react-highcharts","visualization"],"latest_commit_sha":null,"homepage":"https://xlsdg.github.io/react-highcharts-v5-demo/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/xlsdg.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-24T06:09:30.000Z","updated_at":"2018-12-01T13:21:32.000Z","dependencies_parsed_at":"2023-03-22T00:32:48.958Z","dependency_job_id":null,"html_url":"https://github.com/xlsdg/react-highcharts-v5","commit_stats":{"total_commits":23,"total_committers":1,"mean_commits":23.0,"dds":0.0,"last_synced_commit":"17c0c89decb458ef26c369447fb7f49c1900c457"},"previous_names":[],"tags_count":10,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xlsdg%2Freact-highcharts-v5","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xlsdg%2Freact-highcharts-v5/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xlsdg%2Freact-highcharts-v5/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xlsdg%2Freact-highcharts-v5/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/xlsdg","download_url":"https://codeload.github.com/xlsdg/react-highcharts-v5/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/xlsdg%2Freact-highcharts-v5/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":258695563,"owners_count":22742672,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chart","highcharts","library","react","react-component","react-highcharts","visualization"],"created_at":"2024-12-05T10:14:10.674Z","updated_at":"2026-04-29T14:06:56.345Z","avatar_url":"https://github.com/xlsdg.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# react-highcharts-v5\n\n\u003e React.js(v16.x+) component wrap for HighCharts.js(v6.x+)\n\n## Installation\n\n```bash\n$ npm install --save highcharts react-highcharts-v5\n```\n\n## Usage\n\n0. Change webpack config\n\n    For webpack 1.x:\n\n    ```diff\n          {\n            test: /\\.jsx?$/,\n            loader: 'babel',\n            include: [\n    -          path.join(prjRoot, 'src')\n    +          path.join(prjRoot, 'src'),\n    +          path.join(prjRoot, 'node_modules/react-highcharts-v5/src')\n            ],\n    -        exclude: /node_modules/\n    +        exclude: /node_modules(?![\\\\/]react-highcharts-v5[\\\\/]src[\\\\/])/\n          },\n    ```\n\n    For webpack 2.x+:\n\n    ```diff\n          {\n            test: /\\.jsx?$/,\n            loader: 'babel-loader',\n    -       include: [resolve('src'), resolve('test')]\n    +       include: [resolve('src'), resolve('test'), resolve('node_modules/react-highcharts-v5/src')]\n          }\n    ```\n\n1. Import HighCharts\n\n    ```javascript\n    import IHighCharts from 'react-highcharts-v5/src/HighCharts.js';\n\n    export default () =\u003e {\n      const options = {};\n\n      return (\n        \u003cIHighCharts\n          options={options}\n        /\u003e\n      );\n    };\n    ```\n\n2. Import HighMaps\n\n    ```javascript\n    import IHighCharts from 'react-highcharts-v5/src/HighMaps.js';\n\n    export default () =\u003e {\n      const options = {};\n\n      return (\n        \u003cIHighCharts\n          options={options}\n        /\u003e\n      );\n    };\n    ```\n\n3. Import HighStock\n\n    ```javascript\n    import IHighCharts from 'react-highcharts-v5/src/HighStock.js';\n\n    export default () =\u003e {\n      const options = {};\n\n      return (\n        \u003cIHighCharts\n          options={options}\n        /\u003e\n      );\n    };\n    ```\n\n## propTypes\n\n```javascript\nclassName: PropTypes.string,\nstyle: PropTypes.object,\nloading: PropTypes.oneOfType([\n    PropTypes.string,\n    PropTypes.bool\n]),\ntheme: PropTypes.object,\nresizable: PropTypes.bool,\noptions: PropTypes.object.isRequired,\nonLoad: PropTypes.func,\nonResize: PropTypes.func\n```\n\n## defaultProps\n\n```javascript\nclassName: 'react-highcharts',\nstyle: {\n    width: '100%',\n    height: '100%'\n},\nloading: false,\ntheme: null,\nresizable: false,\nonLoad: () =\u003e {},\nonResize: (w, h) =\u003e {}\n```\n\n## Demo\n\n[react-highcharts-v5-demo](https://github.com/xlsdg/react-highcharts-v5-demo)\n\n# License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxlsdg%2Freact-highcharts-v5","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxlsdg%2Freact-highcharts-v5","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxlsdg%2Freact-highcharts-v5/lists"}