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
Its not possible to create a composite chart because you can't properly use compose property in config - you need access to chart.
.compose([ dc.lineChart(composite) // composite must be chart parent .dimension(dim) .colors('red') .group(grp1, "Top Line") .dashStyle([2, 2]), dc.lineChart(composite) // composite must be chart parent .dimension(dim) .colors('blue') .group(grp2, "Bottom Line") .dashStyle([5, 5]) ]) .brushOn(false) .render();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Its not possible to create a composite chart because you can't properly use compose property in config - you need access to chart.
The text was updated successfully, but these errors were encountered: