Skip to content

Accrual over Time (derived) Configuration

Spencer edited this page Aug 20, 2019 · 2 revisions

The most straightforward way to customize the derived accrual over time chart is by using a configuration object whose properties describe the behavior and appearance of the chart. Since the derived accrual over time chart is a Webcharts chart object, many default Webcharts settings are set in the webchartsSettings.js file as described below. Refer to the Webcharts documentation for more details on these settings.

In addition to the standard Webcharts settings several custom settings not available in the base Webcharts library have been added to the derived accrual over time chart to facilitate data mapping and other custom functionality. These custom settings are described in detail below. All defaults can be overwritten by users.

Renderer-specific settings

The sections below describe each accrual-over-time-derived setting as of version 0.1.0.

settings.population_col

string

variable: population

default: "population"

settings.population_order_col

string

variable: population order

default: "population_order"

settings.population_color_col

string

variable: population color

default: "population_color"

settings.date_col

string

date variable name in YYYY-MM-DD format

default: "date"

Webcharts settings

The object below contains each Webcharts setting as of version 0.1.0.

{
    "x": {
        "type": "time",
        "column": null,
        "label": "",
        "format": "%b-%y"
    },
    "y": {
        "type": "linear",
        "column": null,
        "label": "",
        "behavior": "firstfilter"
    },
    "marks": [
        {
            "type": "line",
            "per": [],
            "summarizeY": "sum",
            "tooltip": "$y"
        }
    ],
    "color_by": null,
    "color_dom": null,
    "colors": null,
    "legend": {
        "label": "",
        "order": null
    },
    "resizable": false,
    "width": 500,
    "height": 350,
    "margin": {},
    "date_format": "%Y-%m-%d"
}