Hexagon-Chart is a React component that renders data in a hexagon shape. It supports various options for representing data and is very easy to use.
Install the package using npm or yarn:
npm install hexagon-chart
or
yarn add hexagon-chart
Live Playground For examples of Hexagon-Chart in action, visit https://nkia-development.github.io/hexagon-chart
Or, run the demo storybook on your computer:
git clone https://github.com/nkia-development/hexagon-chart
npm install
npm run storybook
import { HexagonChart } from "hexagon-chart";
const MyComponent = () => {
const data = [];
const option = {};
return <HexagonChart data={data} option={option} />;
};
import { PieHexagonChart } from "hexagon-chart";
const MyComponent = () => {
const data = [];
const option = {};
return <PieHexagonChart data={data} option={option} />;
};
See CONTRIBUTING for details on submitting patches and the contribution workflow.
Nkia has adopted a Code of Conduct that we expect project participants to adhere to. Please read the full text so that you can understand what actions will and will not be tolerated.
Hexagon-chart is MIT licensed.