Skip to content

Commit

Permalink
Add example for ranged bar with not binned position channels
Browse files Browse the repository at this point in the history
  • Loading branch information
yhoonkim committed Oct 12, 2022
1 parent 93b4585 commit d8f3f63
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 0 deletions.
Binary file added examples/compiled/bar_ranged_not_binned.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions examples/compiled/bar_ranged_not_binned.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
123 changes: 123 additions & 0 deletions examples/compiled/bar_ranged_not_binned.vg.json
@@ -0,0 +1,123 @@
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"background": "white",
"padding": 5,
"width": 200,
"height": 200,
"style": "cell",
"data": [
{
"name": "source_0",
"values": [
{"b": 28, "b2": 0},
{"b": 55, "b2": 0},
{"b": 43, "b2": 0},
{"b": 91, "b2": 0},
{"b": 81, "b2": 0},
{"b": 53, "b2": 0},
{"b": 19, "b2": 0},
{"b": 87, "b2": 0},
{"b": 52, "b2": 0}
]
},
{
"name": "data_0",
"source": "source_0",
"transform": [
{
"type": "filter",
"expr": "isValid(datum[\"b\"]) && isFinite(+datum[\"b\"])"
}
]
}
],
"marks": [
{
"name": "marks",
"type": "rect",
"style": ["bar"],
"from": {"data": "data_0"},
"encode": {
"update": {
"fill": {"value": "#4c78a8"},
"ariaRoleDescription": {"value": "bar"},
"description": {
"signal": "\"b: \" + (format(datum[\"b\"], \"\")) + \"; b2: \" + (format(datum[\"b2\"], \"\"))"
},
"x": {"scale": "x", "field": "b"},
"x2": {"scale": "x", "value": 0},
"y": {"scale": "y", "field": "b"},
"y2": {"scale": "y", "field": "b2"}
}
}
}
],
"scales": [
{
"name": "x",
"type": "linear",
"domain": {"data": "data_0", "field": "b"},
"range": [0, {"signal": "width"}],
"nice": true,
"zero": true
},
{
"name": "y",
"type": "linear",
"domain": {"data": "data_0", "fields": ["b", "b2"]},
"range": [{"signal": "height"}, 0],
"nice": true,
"zero": false,
"padding": 5
}
],
"axes": [
{
"scale": "x",
"orient": "bottom",
"gridScale": "y",
"grid": true,
"tickCount": {"signal": "ceil(width/40)"},
"domain": false,
"labels": false,
"aria": false,
"maxExtent": 0,
"minExtent": 0,
"ticks": false,
"zindex": 0
},
{
"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": "b",
"labelFlush": true,
"labelOverlap": true,
"tickCount": {"signal": "ceil(width/40)"},
"zindex": 0
},
{
"scale": "y",
"orient": "left",
"grid": false,
"title": "b, b2",
"labelOverlap": true,
"tickCount": {"signal": "ceil(height/40)"},
"zindex": 0
}
]
}
16 changes: 16 additions & 0 deletions examples/specs/bar_ranged_not_binned.vl.json
@@ -0,0 +1,16 @@
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"data": {
"values": [
{ "b": 28, "b2": 0}, { "b": 55, "b2": 0}, { "b": 43, "b2": 0},
{ "b": 91, "b2": 0}, { "b": 81, "b2": 0}, { "b": 53, "b2": 0},
{ "b": 19, "b2": 0}, { "b": 87, "b2": 0}, { "b": 52, "b2": 0}
]
},
"mark": {"type": "bar"},
"encoding": {
"x": {"field": "b", "type": "quantitative"},
"y": {"field": "b", "type": "quantitative"},
"y2": {"field": "b2"}
}
}

0 comments on commit d8f3f63

Please sign in to comment.