Click here to Skip to main content
15,867,453 members
Articles / Desktop Programming / Windows Forms

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

Rate me:
Please Sign up or sign in to vote.
4.91/5 (47 votes)
30 Jul 2011CPOL3 min read 216.7K   13.1K   125   49
Generate a word cloud form some input text. A word cloud is a randomly arranged set of words used in your text. The size and the color of each word expresses its usage frequency. Rarely used words are small and pale. The control is clickable and allows to identify a word under mouse.

Image 1

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.

C#
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.

C#
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.

C#
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.

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

Use different colours:

C#
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.

C#
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)


Written By
Software Developer
Germany Germany
Tweeter: @gmamaladze
Google+: gmamaladze
Blog: gmamaladze.wordpress.com

Comments and Discussions

 
SuggestionRe: by, and, plural/singual, .. Pin
tassilo26-Jul-11 8:54
tassilo26-Jul-11 8:54 
NewsRe: by, and, plural/singual, .. Pin
George Mamaladze28-Jul-11 8:28
George Mamaladze28-Jul-11 8:28 
GeneralRe: by, and, plural/singual, .. Pin
Win32nipuh2-Aug-11 5:43
professionalWin32nipuh2-Aug-11 5:43 
QuestionMy vote of 5! Pin
Filip D'haene23-Jul-11 3:20
Filip D'haene23-Jul-11 3:20 
QuestionMy vote of 5 Pin
Reiss20-Jul-11 0:35
professionalReiss20-Jul-11 0:35 
NewsRe: My vote of 5 Pin
George Mamaladze29-Jul-11 10:26
George Mamaladze29-Jul-11 10:26 
Questionyet one idea: scaling Pin
Win32nipuh19-Jul-11 6:03
professionalWin32nipuh19-Jul-11 6:03 
QuestionWhat about Silverlight implementation? Pin
Win32nipuh19-Jul-11 5:33
professionalWin32nipuh19-Jul-11 5:33 
AnswerRe: What about Silverlight implementation? Pin
George Mamaladze19-Jul-11 6:18
George Mamaladze19-Jul-11 6:18 
GeneralMy vote of 5 Pin
Win32nipuh19-Jul-11 5:06
professionalWin32nipuh19-Jul-11 5:06 
GeneralRe: My vote of 5 Pin
George Mamaladze19-Jul-11 5:28
George Mamaladze19-Jul-11 5:28 
GeneralRe: My vote of 5 Pin
Win32nipuh19-Jul-11 5:32
professionalWin32nipuh19-Jul-11 5:32 
SuggestionRe: My vote of 5 Pin
George Mamaladze19-Jul-11 6:26
George Mamaladze19-Jul-11 6:26 
GeneralRe: My vote of 5 Pin
Win32nipuh19-Jul-11 6:35
professionalWin32nipuh19-Jul-11 6:35 
GeneralRe: My vote of 5 Pin
Win32nipuh19-Jul-11 22:18
professionalWin32nipuh19-Jul-11 22:18 
QuestionGreat looking tool Pin
Olivier_Giulieri18-Jul-11 13:07
Olivier_Giulieri18-Jul-11 13:07 
GeneralMy vote of 5 Pin
jesseseger13-Jul-11 1:53
professionaljesseseger13-Jul-11 1:53 
GeneralMy vote of 5 Pin
dobbied12-Jul-11 7:03
dobbied12-Jul-11 7:03 
QuestionCoolio [modified] Pin
Sacha Barber11-Jul-11 23:50
Sacha Barber11-Jul-11 23:50 
AnswerRe: Coolio Pin
George Mamaladze12-Jul-11 9:51
George Mamaladze12-Jul-11 9:51 
GeneralRe: Coolio Pin
Sacha Barber12-Jul-11 19:29
Sacha Barber12-Jul-11 19:29 
GeneralMy vote of 5 Pin
Dr.Walt Fair, PE11-Jul-11 18:28
professionalDr.Walt Fair, PE11-Jul-11 18:28 

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

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.