Module

x/vega_lite/examples/specs/bar_grouped.vl.json

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "data": { "url": "data/population.json"}, "transform": [ {"filter": "datum.year == 2000"}, {"calculate": "datum.sex == 2 ? 'Female' : 'Male'", "as": "gender"} ], "width": {"step": 12}, "mark": "bar", "encoding": { "column": { "field": "age", "type": "ordinal", "spacing": 10 }, "y": { "aggregate": "sum", "field": "people", "title": "population", "axis": {"grid": false} }, "x": { "field": "gender", "axis": {"title": ""} }, "color": { "field": "gender", "scale": {"range": ["#675193", "#ca8861"]} } }, "config": { "view": {"stroke": "transparent"}, "axis": {"domainWidth": 1} }}