Skip to content
Snippets Groups Projects
Commit dce059ca authored by attiyaishaque's avatar attiyaishaque
Browse files

Fix display of all words in word clouds.

parent b9e5f35b
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