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
I am not able to access additional fields that i specify on my word cloud data, except for size and text.
I am calling my draw() function on the "end" event.
I think this is due to the fact that you are mapping :
data = words.map(function(d, i) { return { text: text.call(this, d, i), font: font.call(this, d, i), rotate: rotate.call(this, d, i), size: ~~fontSize.call(this, d, i), padding: cloudPadding.call(this, d, i) };
and then using
d = data[i]; tags.push(d); event.end(tags, bounds);
so, only these 5 fields are returned after "end" event.
Am i missing something here ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am not able to access additional fields that i specify on my word cloud data, except for size and text.
I am calling my draw() function on the "end" event.
I think this is due to the fact that you are mapping :
and then using
so, only these 5 fields are returned after "end" event.
Am i missing something here ?
The text was updated successfully, but these errors were encountered: