We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
How can I style colors in the chart? Not by node, but a color for the whole chart, i having some issues.
I'm using React with react-kapsule.
Any article/documentation recommended so I can properly do it?
What I want:
the code i currently have: (not different for what you have seen)
const SunburstChart: React.FunctionComponent = () => { const chart = Sunburst(); chart.data(data); const ReactSunburst = fromKapsule<{ width: number; height: number; data: Object; }>(Sunburst, { methodNames: ["focusNode"], }); return ( <div> <ReactSunburst width={300} height={300} data={data} /> </div> ); }; export { SunburstChart };
The text was updated successfully, but these errors were encountered:
No branches or pull requests
How can I style colors in the chart?
Not by node, but a color for the whole chart, i having some issues.
I'm using React with react-kapsule.
Any article/documentation recommended so I can properly do it?
What I want:
the code i currently have:
(not different for what you have seen)
The text was updated successfully, but these errors were encountered: