diff --git a/examples/compiled/tick_strip_1D_with_height.png b/examples/compiled/tick_strip_1D_with_height.png new file mode 100644 index 0000000000..ff5ceaada3 Binary files /dev/null and b/examples/compiled/tick_strip_1D_with_height.png differ diff --git a/examples/compiled/tick_strip_1D_with_height.svg b/examples/compiled/tick_strip_1D_with_height.svg new file mode 100644 index 0000000000..aba9a2520a --- /dev/null +++ b/examples/compiled/tick_strip_1D_with_height.svg @@ -0,0 +1 @@ +050100150200Horsepower \ No newline at end of file diff --git a/examples/compiled/tick_strip_1D_with_height.vg.json b/examples/compiled/tick_strip_1D_with_height.vg.json new file mode 100644 index 0000000000..090ea29d7f --- /dev/null +++ b/examples/compiled/tick_strip_1D_with_height.vg.json @@ -0,0 +1,78 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v5.json", + "background": "white", + "padding": 5, + "width": 200, + "height": 200, + "style": "cell", + "data": [ + { + "name": "source_0", + "url": "data/cars.json", + "format": {"type": "json"}, + "transform": [ + { + "type": "filter", + "expr": "isValid(datum[\"Horsepower\"]) && isFinite(+datum[\"Horsepower\"])" + } + ] + } + ], + "marks": [ + { + "name": "marks", + "type": "rect", + "style": ["tick"], + "from": {"data": "source_0"}, + "encode": { + "update": { + "opacity": {"value": 0.7}, + "fill": {"value": "#4c78a8"}, + "ariaRoleDescription": {"value": "tick"}, + "description": { + "signal": "\"Horsepower: \" + (format(datum[\"Horsepower\"], \"\"))" + }, + "xc": {"scale": "x", "field": "Horsepower"}, + "yc": {"signal": "height", "mult": 0.5}, + "height": {"value": 15}, + "width": {"value": 1} + } + } + } + ], + "scales": [ + { + "name": "x", + "type": "linear", + "domain": {"data": "source_0", "field": "Horsepower"}, + "range": [0, {"signal": "width"}], + "nice": true, + "zero": true + } + ], + "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": "Horsepower", + "labelFlush": true, + "labelOverlap": true, + "tickCount": {"signal": "ceil(width/40)"}, + "zindex": 0 + } + ] +}