Tournament chart

A template for visualising knock-out competitions

Updated 6 years ago by Duncan Clark

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

template: _663

version: _1

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: {
        data: [
            [ "DataColumn1Value1", "DataColumn2Value1",
            [ "DataColumn1Value2", "DataColumn2Value2",
            [ "DataColumn1Value3", "DataColumn2Value3",
            ...
        ]
    }
}

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: "_663",
    version: "_1",
    bindings: {
        data: {
            round: 0, // index of a column in your data
            team_a: 1, // index of a column in your data
            team_b: 2, // index of a column in your data
            winner: 3, // index of a column in your data
        }
    },
    data: {
        data: [
            [ "DataColumn1Value1", "DataColumn2Value1",
            [ "DataColumn1Value2", "DataColumn2Value2",
            [ "DataColumn1Value3", "DataColumn2Value3",
            ...
        ]
    }
}

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

{
    template: "_663",
    version: "_1",
    bindings: {
        data: {
            round: 0, // index of a column in your data
            team_a: 1, // index of a column in your data
            team_b: 2, // index of a column in your data
            winner: 3, // index of a column in your data
            Values: [4, 5, ...], // index(es) of column(s) in your data
        }
    },
    data: {
        data: [
            [ "DataColumn1Value1", "DataColumn2Value1",
            [ "DataColumn1Value2", "DataColumn2Value2",
            [ "DataColumn1Value3", "DataColumn2Value3",
            ...
        ]
    }
}

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:

{
        data: [
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            ...
        ]
    }

... 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: "_663",
    version: "_1",
    bindings: {
        data: {
            round: "DataHeader1",
            team_a: "DataHeader2",
            team_b: "DataHeader3",
            winner: "DataHeader4",
        }
    },
    data: {
        data: [
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            ...
        ]
    }
}

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

{
    template: "_663",
    version: "_1",
    bindings: {
        data: {
            round: "DataHeader1",
            team_a: "DataHeader2",
            team_b: "DataHeader3",
            winner: "DataHeader4",
            Values: ["DataHeader5", "DataHeader6", ...],
        }
    },
    data: {
        data: [
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            ...
        ]
    }
}

(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: "_663",
    version: "_1",
    data: {
    data: [
        {
            round: ...,
            team_a: ...,
            team_b: ...,
            winner: ...,
            Values: [...]
        },
        ...
    ]
},
    ...
}

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

{
    template: "_663",
    version: "_1",
    data: {
    data: [
        {
            round: ...,
            team_a: ...,
            team_b: ...,
            winner: ...,
            Values: [...]
        },
        ...
    ]
},
    ...
}

Meanings of the template data keys:

  • data.round: round
  • data.team_a: team_a
  • data.team_b: team_b
  • data.winner: winner
  • data.Values: Values

Template settings

Options for opts.state.

Section title

vertical boolean

Orientation.

Allowed values:

  • false (Horizontal)
  • true (Vertical)