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
There seems to be a disconnect between when the order of execution of the rendering cycle.
For example consider this example where bars is rendered before the labels:
var total = 0; chart.using('bars', function(bars){ bars.x(function(){ total+=1; }); }) .using('labels', function(labels){ labels.x(function(){ // => 0 instead of 1; console.log(total); }); });
The text was updated successfully, but these errors were encountered:
This is actually not a bug. Features are executed in the order they are mixed into the chart not in the order they are "used".
Sorry, something went wrong.
heavysixer
No branches or pull requests
There seems to be a disconnect between when the order of execution of the rendering cycle.
For example consider this example where bars is rendered before the labels:
The text was updated successfully, but these errors were encountered: