Skip to content
Snippets Groups Projects
Unverified Commit ef3ee200 authored by Attiya Ishaque's avatar Attiya Ishaque Committed by GitHub
Browse files

Merge pull request #18548 from edx/ai/EDUCATOR-3153-display-word-cloud

Fix display of all words in word clouds.
parents edfdbc7a dce059ca
Branches
Tags
No related merge requests found
......@@ -309,7 +309,7 @@ export default class WordCloudMain {
.style('font-family', 'Impact')
.style('fill', (d, i) => fill(i))
.attr('text-anchor', 'middle')
.attr('transform', d => `translate(${d.x}, ${d.y})rotate(${d.rotate$})scale(${scale})`)
.attr('transform', d => `translate(${d.x}, ${d.y})rotate(${d.rotate})scale(${scale})`)
.text(d => d.text);
}
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment