{ "$schema": "https://vega.github.io/schema/vega/v5.json", "background": "white", "padding": 5, "width": 200, "height": 20, "style": "cell", "data": [ { "name": "source_0", "url": "data/cars.json", "format": {"type": "json"}, "transform": [ { "type": "aggregate", "groupby": ["Origin"], "ops": ["sum"], "fields": ["Acceleration"], "as": ["sum_Acceleration"] }, { "type": "stack", "groupby": [], "field": "sum_Acceleration", "sort": {"field": ["Origin"], "order": ["ascending"]}, "as": ["sum_Acceleration_start", "sum_Acceleration_end"], "offset": "zero" }, { "type": "filter", "expr": "isValid(datum[\"sum_Acceleration\"]) && isFinite(+datum[\"sum_Acceleration\"])" } ] } ], "marks": [ { "name": "marks", "type": "rect", "style": ["bar"], "from": {"data": "source_0"}, "encode": { "update": { "fill": {"scale": "color", "field": "Origin"}, "ariaRoleDescription": {"value": "bar"}, "description": { "signal": "\"Sum of Acceleration: \" + (format(datum[\"sum_Acceleration\"], \"\")) + \"; Origin: \" + (isValid(datum[\"Origin\"]) ? datum[\"Origin\"] : \"\"+datum[\"Origin\"])" }, "x": {"scale": "x", "field": "sum_Acceleration_end"}, "x2": {"scale": "x", "field": "sum_Acceleration_start"}, "yc": {"signal": "height", "mult": 0.5}, "height": {"value": 18} } } } ], "scales": [ { "name": "x", "type": "linear", "domain": { "data": "source_0", "fields": ["sum_Acceleration_start", "sum_Acceleration_end"] }, "range": [0, {"signal": "width"}], "nice": true, "zero": true }, { "name": "color", "type": "ordinal", "domain": {"data": "source_0", "field": "Origin", "sort": true}, "range": "category" } ], "axes": [ { "scale": "x", "orient": "bottom", "grid": true, "tickCount": {"signal": "ceil(width/40)"}, "domain": false, "labels": false, "aria": false, "maxExtent": 0, "minExtent": 0, "ticks": false, "zindex": 0 }, { "scale": "x", "orient": "bottom", "grid": false, "title": "Sum of Acceleration", "labelFlush": true, "labelOverlap": true, "tickCount": {"signal": "ceil(width/40)"}, "zindex": 0 } ], "legends": [{"fill": "color", "symbolType": "square", "title": "Origin"}] }