{ "$schema": "https://vega.github.io/schema/vega/v5.json", "background": "white", "padding": 5, "height": 200, "style": "cell", "data": [ { "name": "source_0", "values": [ {"a": "A", "b": "B", "c": 28}, {"a": "B", "b": "C", "c": 55}, {"a": "C", "b": "D", "c": 43}, {"a": "D", "b": "E", "c": 91}, {"a": "E", "b": "F", "c": 81}, {"a": "F", "b": "G", "c": 53}, {"a": "G", "b": "H", "c": 19}, {"a": "H", "b": "I", "c": 87}, {"a": "I", "b": "J", "c": 52} ] }, { "name": "data_0", "source": "source_0", "transform": [ { "type": "stack", "groupby": ["a"], "field": "c", "sort": {"field": [], "order": []}, "as": ["c_start", "c_end"], "offset": "zero" }, { "type": "filter", "expr": "isValid(datum[\"c\"]) && isFinite(+datum[\"c\"])" } ] } ], "signals": [ {"name": "x_step", "value": 20}, { "name": "width", "update": "bandspace(domain('x').length, 0.1, 0.05) * x_step" } ], "marks": [ { "name": "layer_0_marks", "type": "rect", "style": ["bar"], "from": {"data": "data_0"}, "encode": { "update": { "fill": {"value": "#4c78a8"}, "ariaRoleDescription": {"value": "bar"}, "description": { "signal": "\"a: \" + (isValid(datum[\"a\"]) ? datum[\"a\"] : \"\"+datum[\"a\"]) + \"; c: \" + (format(datum[\"c\"], \"\"))" }, "x": {"scale": "x", "field": "a"}, "width": {"scale": "x", "band": 1}, "y": {"scale": "y", "field": "c_end"}, "y2": {"scale": "y", "field": "c_start"} } } }, { "name": "layer_1_marks", "type": "line", "style": ["line"], "sort": {"field": "datum[\"b\"]"}, "from": {"data": "source_0"}, "encode": { "update": { "stroke": {"value": "red"}, "description": { "signal": "\"b: \" + (isValid(datum[\"b\"]) ? datum[\"b\"] : \"\"+datum[\"b\"]) + \"; c: \" + (format(datum[\"c\"], \"\"))" }, "x": {"scale": "x", "field": "b", "band": 0.5}, "y": {"scale": "y", "field": "c"}, "defined": { "signal": "isValid(datum[\"c\"]) && isFinite(+datum[\"c\"])" } } } } ], "scales": [ { "name": "x", "type": "band", "domain": { "fields": [ {"data": "data_0", "field": "a"}, {"data": "source_0", "field": "b"} ], "sort": true }, "range": {"step": {"signal": "x_step"}}, "paddingInner": 0.1, "paddingOuter": 0.05 }, { "name": "y", "type": "linear", "domain": { "fields": [ {"data": "data_0", "field": "c_start"}, {"data": "data_0", "field": "c_end"}, {"data": "source_0", "field": "c"} ] }, "range": [{"signal": "height"}, 0], "nice": true, "zero": true } ], "axes": [ { "scale": "y", "orient": "left", "gridScale": "x", "grid": true, "tickCount": {"signal": "ceil(height/40)"}, "domain": false, "labels": false, "aria": false, "maxExtent": 0, "minExtent": 0, "ticks": false, "zindex": 0 }, { "scale": "x", "orient": "bottom", "grid": false, "title": "a, b", "labelAlign": "right", "labelAngle": 270, "labelBaseline": "middle", "zindex": 0 }, { "scale": "y", "orient": "left", "grid": false, "title": "c", "labelOverlap": true, "tickCount": {"signal": "ceil(height/40)"}, "zindex": 0 } ] }