Banned appss

A Flourish template

Updated 4 years ago to v0.0.7 by Design Team

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

template: @designteam/cn_tech_apps

version: 0

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: "@designteam/cn_tech_apps",
    version: "0",
    bindings: {
        data: {
            genreOriginal: 0, // index of a column in your data
            app: 1, // index of a column in your data
            ratings: 2, // index of a column in your data
            genreNew: 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: "@designteam/cn_tech_apps",
    version: "0",
    bindings: {
        data: {
            genreOriginal: 0, // index of a column in your data
            app: 1, // index of a column in your data
            ratings: 2, // index of a column in your data
            genreNew: 3, // index of a column 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: "@designteam/cn_tech_apps",
    version: "0",
    bindings: {
        data: {
            genreOriginal: "DataHeader1",
            app: "DataHeader2",
            ratings: "DataHeader3",
            genreNew: "DataHeader4",
        }
    },
    data: {
        data: [
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            { "DataHeader1": ..., "DataHeader2": ..., ... },
            ...
        ]
    }
}

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

{
    template: "@designteam/cn_tech_apps",
    version: "0",
    bindings: {
        data: {
            genreOriginal: "DataHeader1",
            app: "DataHeader2",
            ratings: "DataHeader3",
            genreNew: "DataHeader4",
        }
    },
    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: "@designteam/cn_tech_apps",
    version: "0",
    data: {
    data: [
        {
            genreOriginal: ...,
            app: ...,
            ratings: ...,
            genreNew: ...
        },
        ...
    ]
},
    ...
}

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

{
    template: "@designteam/cn_tech_apps",
    version: "0",
    data: {
    data: [
        {
            genreOriginal: ...,
            app: ...,
            ratings: ...,
            genreNew: ...
        },
        ...
    ]
},
    ...
}

Meanings of the template data keys:

  • data.genreOriginal: genreOriginal
  • data.app: app
  • data.ratings: ratings
  • data.genreNew: genreNew

Template settings

Options for opts.state.

Text & title

headingInput string

Heading.

subheadingInput string

Sub heading.

note string

Note.

source string

Source.

Icon

backColor color

Background.

artworkType string

Artwork type.

Allowed values:

  • rect (Square)
  • path (Path)
  • circle (Circle)

iconWidth number

Icon width.

iconHeight number

Icon height.

artworkInput string

Artwork input.

strokeWidth number

Stroke width.

strokeColour color

Stroke colour.

fillColour color

Fill colour.

iconToData number

Icons to data.

colourType string

Colour by.

Allowed values:

  • stroke (Stroke)
  • fill (Fill)

Design

iconHighlight string

Highlight group.

hideNumbers boolean

Hide numbers.

useColourSequence boolean

Use colour sequence.

colourSequence colors

Colour sequence.

highlightColour color

Highlight colour.

breakpoint number

Breakpoint.

sortData string

Sort data?.

Allowed values:

  • descending (Descending)
  • ascending (Ascending)
  • no (No)