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
Right now chartkit using ChartKitSettings singleton class for it's settings.
This might lead to a bug when developer trying to set several plugins in different modules;
// Module 1 settings.set({plugins: [YagrPlugin]}); // Module 2 settings.set({plugins: [MyAmazingPlugin]});
This code above might lead to error - one plugin will be overwrited with another, and chart will now be shown.
Proposal: lets pass chartkit settings to the chartkit as props.
<ChartKit type="d3" settings={settings} data={data} />
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Right now chartkit using ChartKitSettings singleton class for it's settings.
This might lead to a bug when developer trying to set several plugins in different modules;
This code above might lead to error - one plugin will be overwrited with another, and chart will now be shown.
Proposal: lets pass chartkit settings to the chartkit as props.
The text was updated successfully, but these errors were encountered: