Wordcloud

template for creating wordclouds

Updated 6 years ago by Zsolt Czinkos

How to use this template

Wordcloud template

Based on wordcloud2.js: https://github.com/timdream/wordcloud2.js/

This section documents API usage specific to this template, so for an introduction we suggest you refer to the generic API documentation instead.

template: _569

version: _3

Template data

There are three different formats in which you can supply data to this template. The most convenient for you to use likely depends on the source of your data, as described below.

1. Array of arrays, and a bindings object

You can supply arrays of arrays to opts.data, which might look like:

{
    data: {
        words: [
            [ "WordsColumn1Value1", "WordsColumn2Value1",
            [ "WordsColumn1Value2", "WordsColumn2Value2",
            [ "WordsColumn1Value3", "WordsColumn2Value3",
            ...
        ]
    }
}

where each array of arrays represents the rows in a data sheet.

To tell the API how the values from each column should be associated with the keys that the template is expecting, you must also supply an object attached to opts.bindings. (The meanings of the keys in the bindings object are documented below.) The minimal bindings you can supply for this template are as shown in this example:

{
    template: "_569",
    version: "_3",
    bindings: {
        words: {
            word: 0, // index of a column in your data
            count: 1, // index of a column in your data
            pos: 2, // index of a column in your data
        }
    },
    data: {
        words: [
            [ "WordsColumn1Value1", "WordsColumn2Value1",
            [ "WordsColumn1Value2", "WordsColumn2Value2",
            [ "WordsColumn1Value3", "WordsColumn2Value3",
            ...
        ]
    }
}

All possible bindings that you can supply are shown in this example:

{
    template: "_569",
    version: "_3",
    bindings: {
        words: {
            word: 0, // index of a column in your data
            count: 1, // index of a column in your data
            pos: 2, // index of a column in your data
        }
    },
    data: {
        words: [
            [ "WordsColumn1Value1", "WordsColumn2Value1",
            [ "WordsColumn1Value2", "WordsColumn2Value2",
            [ "WordsColumn1Value3", "WordsColumn2Value3",
            ...
        ]
    }
}

2. Array of objects with arbitrary keys, and a bindings object

This format is most likely useful when you have data from an external source, such as CSV data loaded from d3-dsv. You should supply this attached to the opts.data, which might look like:

{
        words: [
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            ...
        ]
    }

... but with the keys being the column headers from your source data instead. You must also supply an object attached to opts.bindings. The minimal bindings you can supply for this template are as shown in this example:

{
    template: "_569",
    version: "_3",
    bindings: {
        words: {
            word: "WordsHeader1",
            count: "WordsHeader2",
            pos: "WordsHeader3",
        }
    },
    data: {
        words: [
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            ...
        ]
    }
}

All possible bindings that you can supply are shown in this example:

{
    template: "_569",
    version: "_3",
    bindings: {
        words: {
            word: "WordsHeader1",
            count: "WordsHeader2",
            pos: "WordsHeader3",
        }
    },
    data: {
        words: [
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            { "WordsHeader1": ..., "WordsHeader2": ..., ... },
            ...
        ]
    }
}

(As before, the keys containing "Header" would be replaced by column names from your data source.)

3. Array of objects with template-defined keys

There is an alternative format you can use, which is likely to be easier to use if your data is not from a spreadsheet source. With this alternative format you supply your data to the template as an array of objects, attached to opts.data, where the keys must be those used by the template, as documented below. In this case there is no need to supply a bindings object, since the key names are already those expected by the template. The required properties in the data object are as follows (scroll down for a description of what each property is):

{
    template: "_569",
    version: "_3",
    data: {
    words: [
        {
            word: ...,
            count: ...,
            pos: ...
        },
        ...
    ]
},
    ...
}

And the full list of all possible properties is as follows:

{
    template: "_569",
    version: "_3",
    data: {
    words: [
        {
            word: ...,
            count: ...,
            pos: ...
        },
        ...
    ]
},
    ...
}

Meanings of the template data keys:

  • words.word: word
  • words.count: count
  • words.pos: pos

Template settings

Options for opts.state.

Settings

backgroundColor color

Background color. Setting the background color of the wordcloud

color string

Text color. color of text

Allowed values:

  • random-dark (Dark)
  • random-light (Light)

minFontSize number

Smallest font size.

maxFontSize number

Largest font size.