gdurelle / gwt-tagcloud

A gwt composite to create a tag cloud
1 stars 1 forks source link

setOrientation not working, #6

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
TagCloud tagCloud = new TagCloud();
tagCloud.setColored(true);

WordTag wordTag = new WordTag();
wordTag.setWord("hi");
wordTag.setNumberOfOccurences(2);
wordTag.setOrientation(Tag.VERTICAL_RIGHT);
wordTag.setColor("red");
tagCloud.addWord(wordTag);

What is the expected output? What do you see instead?
The orientation of the word should be Vertical but no change can be seen. why?

What version of the product are you using? On what operating system?
I am using tagcloud_0.4 on Windows

Original issue reported on code.google.com by shobhits...@gmail.com on 26 Jan 2014 at 5:44