Click here to Skip to main content
Click here to Skip to main content

Word Cloud (Tag Cloud) Generator Control for .NET Windows.Forms in C#

By , 30 Jul 2011
 

Background

This control is inspired by the free web-based word cloud generator called Wordle. In fact, the control is a screw-out product of my project at http://sourcecodecloud.codeplex.com.

I really loved the visualizations produced by Wordle, but my goal was to write a non web based local solution to process large amounts of sensible data. There were a number of components I found on the web, but most of them had either very pure performance when processing text and the visualization or the layout was not what I expected.

Architecture and usage

There are four phases when visualizing the word cloud:

Processing data like text, HTML, or source code, and extracting the relevant words while ignoring others. As an example, I have implemented three of them. TextExtractor extracts all words from some text string ignoring spaces and all non-letter characters. FileExtractor is able to process large text files line by line. Another one UriExtractor fetches a URL content and tries to clean away HTML tags and JavaScript (to be honest, I just implemented it as a showcase and its filtering capabilities are very pure).

To tap your own data source, just implement the IEnumerable<string> interface or derive from BaseExtractor.

Counting words and ignoring ones from blacklist.

The result is an enumeration with pairs of terms (words) and integers representing the number of occurrences of this word in a text. In the first implementation, I was using KeyValuePair<string, int> to represent them. In this version, I switched to the IWord interface.

public interface IWord : IComparable<IWord>
{
    string Text { get; }
    int Occurrences { get; }
    string GetCaption();
}

I have also moved to LINQ and gave up my own classes for word counting, grouping, and sorting. I loved them very much, but using LINQ increased readability, reduced complexity, and shortened code. All these at the price of an ignorable insignificant performance drawback was really a good deal.

IBlacklist blacklist = new CommonWords();
IProgressIndicator progress = new ProgressBarWrapper(progressBar);
IEnumerable<string> terms = new StringExtractor(textBox.Text, progress);

cloudControl.WeightedWords =
    terms
        .Filter(blacklist)
        .CountOccurences()
        .SortByOccurences();

Layout – I use a QuadTree data structure to create a non overlapping map of words on controls graphics. The same data structure is also used to query control which words are under a certain rectangular area or point. This query is used to redraw only a particular area when needed or perform some action when a control is clicked. Thereby it is very useful to know which word was clicked to perform a word related action, let’s say show statistics or navigate to some URL.

private void cloudControl_Click(object sender, EventArgs e)
{
    LayoutItem itemUderMouse;
    Point mousePositionRelativeToControl = 
       cloudControl.PointToClient(new Point(MousePosition.X, MousePosition.Y));
    if (!cloudControl.TryGetItemAtLocation(
             mousePositionRelativeToControl, out itemUderMouse))
    {
        return;
    }
    MessageBox.Show(itemUderMouse.Word);
}

Configuring the Word Cloud Control

There are several things you may vary on this control:

You can change the font type and size.

cloudControl.MinFontSize = 6;
cloudControl.MaxFontSize = 60;
cloudControl.Font = new Font(new FontFamily("Verdana"), 8, FontStyle.Regular); 

Use different colours:

cloudControl.Palette = new Brush[] {Brushes.DarkRed, Brushes.Red, Brushes.LightPink};  

Use a different layout. Currently, there are two layouts implemented. You can implement your own by deriving from BaseLayout or just by implementing the ILayout interface on your own.

cloudControl.LayoutType = LayoutType.Typewriter;

The logic of lay out and drawing graphics is strictly separated by the IGraphicEngine interface. So I think it would not be a big deal to port it to WPF or Silverlight in the future.

For experts

By digging in the code, you will discover the following extra features:

  • Creating your own blacklist - IBlacklist interface or the CommonBlacklist base class.
  • Loading blacklist from file - CommonBlacklist.CreateFromFile(...) method.
  • Grouping words having common stem like - departed, depart, departing.
  • You are even able to see statistics on it.
  • departed.JPG

Credits

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

George Mamaladze
Software Developer
Germany Germany
Tweeter: @gmamaladze
Google+: gmamaladze
Blog: gmamaladze.wordpress.com
Follow on   Twitter

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
GeneralMy vote of 5memberMihnea Rădulescu12-Oct-12 4:42 
GeneralMy vote of 5memberMember 12709965-Sep-12 23:05 
QuestionGreat Control but I found an error [modified]memberrapunsel11129-Jan-12 21:31 
GeneralMy vote of 5memberJohnny Deese1-Dec-11 11:51 
Questionsimply excellentmembersgraf@psc-nrw.de18-Oct-11 6:58 
GeneralMy vote of 5memberhadre13-Sep-11 12:35 
QuestionSaving Cloud to filemembermswCP24-Aug-11 13:20 
AnswerRe: Saving Cloud to filememberGeorge Mamaladze24-Aug-11 19:42 
QuestionnicememberCIDev8-Aug-11 3:37 
Questionissue with some word setsmemberfunazonki3-Aug-11 7:23 
GeneralRe: issue with some word setsmemberGeorge Mamaladze3-Aug-11 7:57 
GeneralMy vote of 5membermaq_rohit29-Jul-11 8:40 
Nice Piece of code Smile | :)
GeneralRe: My vote of 5memberRanger18521-Aug-12 8:48 
QuestionRe: by, and, plural/singual, ..memberGeorge Mamaladze26-Jul-11 3:17 
SuggestionRe: by, and, plural/singual, ..membertassilo26-Jul-11 8:40 
SuggestionRe: by, and, plural/singual, ..membertassilo26-Jul-11 8:54 
NewsRe: by, and, plural/singual, ..memberGeorge Mamaladze28-Jul-11 8:28 
GeneralRe: by, and, plural/singual, ..memberWin32nipuh2-Aug-11 5:43 
QuestionMy vote of 5!memberFilip D'haene23-Jul-11 3:20 
QuestionMy vote of 5memberReiss20-Jul-11 0:35 
NewsRe: My vote of 5memberGeorge Mamaladze29-Jul-11 10:26 
Questionyet one idea: scalingmemberWin32nipuh19-Jul-11 6:03 
QuestionWhat about Silverlight implementation?memberWin32nipuh19-Jul-11 5:33 
AnswerRe: What about Silverlight implementation?memberGeorge Mamaladze19-Jul-11 6:18 
GeneralMy vote of 5memberWin32nipuh19-Jul-11 5:06 
GeneralRe: My vote of 5memberGeorge Mamaladze19-Jul-11 5:28 
GeneralRe: My vote of 5memberWin32nipuh19-Jul-11 5:32 
SuggestionRe: My vote of 5memberGeorge Mamaladze19-Jul-11 6:26 
GeneralRe: My vote of 5memberWin32nipuh19-Jul-11 6:35 
GeneralRe: My vote of 5memberWin32nipuh19-Jul-11 22:18 
QuestionGreat looking toolmemberEvoluteur18-Jul-11 13:07 
GeneralMy vote of 5memberjesseseger13-Jul-11 1:53 
GeneralMy vote of 5memberdobbied12-Jul-11 7:03 
QuestionCoolio [modified]mvpSacha Barber11-Jul-11 23:50 
AnswerRe: CooliomemberGeorge Mamaladze12-Jul-11 9:51 
GeneralRe: CooliomvpSacha Barber12-Jul-11 19:29 
GeneralMy vote of 5subeditorWalt Fair, Jr.11-Jul-11 18:28 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 31 Jul 2011
Article Copyright 2011 by George Mamaladze
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid