Skip to content

Commit f8a0cfa

Browse files
kanitwGitHub Actions Bot
and
GitHub Actions Bot
authored
fix: make timeUnit band respect x2Offset (#8956)
Co-authored-by: GitHub Actions Bot <[email protected]>
1 parent 39bc25a commit f8a0cfa

5 files changed

+142
-1
lines changed
Loading
Loading
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
{
2+
"$schema": "https://vega.github.io/schema/vega/v5.json",
3+
"background": "white",
4+
"padding": 5,
5+
"width": 200,
6+
"height": 200,
7+
"style": "cell",
8+
"data": [
9+
{
10+
"name": "source_0",
11+
"url": "data/seattle-weather.csv",
12+
"format": {"type": "csv", "parse": {"date": "date"}},
13+
"transform": [
14+
{
15+
"field": "date",
16+
"type": "timeunit",
17+
"units": ["month"],
18+
"as": ["month_date", "month_date_end"]
19+
},
20+
{
21+
"type": "aggregate",
22+
"groupby": ["month_date", "month_date_end"],
23+
"ops": ["mean"],
24+
"fields": ["precipitation"],
25+
"as": ["mean_precipitation"]
26+
},
27+
{
28+
"type": "filter",
29+
"expr": "(isDate(datum[\"month_date\"]) || (isValid(datum[\"month_date\"]) && isFinite(+datum[\"month_date\"]))) && isValid(datum[\"mean_precipitation\"]) && isFinite(+datum[\"mean_precipitation\"])"
30+
}
31+
]
32+
}
33+
],
34+
"marks": [
35+
{
36+
"name": "marks",
37+
"type": "rect",
38+
"style": ["bar"],
39+
"from": {"data": "source_0"},
40+
"encode": {
41+
"update": {
42+
"fill": {"value": "#4c78a8"},
43+
"ariaRoleDescription": {"value": "bar"},
44+
"description": {
45+
"signal": "\"date (month): \" + (timeFormat(datum[\"month_date\"], timeUnitSpecifier([\"month\"], {\"year-month\":\"%b %Y \",\"year-month-date\":\"%b %d, %Y \"}))) + \"; Mean of precipitation: \" + (format(datum[\"mean_precipitation\"], \"\"))"
46+
},
47+
"x2": {"scale": "x", "field": "month_date", "offset": 3},
48+
"x": {"scale": "x", "field": "month_date_end", "offset": -2},
49+
"y": {"scale": "y", "field": "mean_precipitation"},
50+
"y2": {"scale": "y", "value": 0}
51+
}
52+
}
53+
}
54+
],
55+
"scales": [
56+
{
57+
"name": "x",
58+
"type": "time",
59+
"domain": {
60+
"data": "source_0",
61+
"fields": ["month_date", "month_date_end"]
62+
},
63+
"range": [0, {"signal": "width"}]
64+
},
65+
{
66+
"name": "y",
67+
"type": "linear",
68+
"domain": {"data": "source_0", "field": "mean_precipitation"},
69+
"range": [{"signal": "height"}, 0],
70+
"nice": true,
71+
"zero": true
72+
}
73+
],
74+
"axes": [
75+
{
76+
"scale": "x",
77+
"orient": "bottom",
78+
"gridScale": "y",
79+
"grid": true,
80+
"tickMinStep": {
81+
"signal": "datetime(2001, 1, 1, 0, 0, 0, 0) - datetime(2001, 0, 1, 0, 0, 0, 0)"
82+
},
83+
"domain": false,
84+
"labels": false,
85+
"aria": false,
86+
"maxExtent": 0,
87+
"minExtent": 0,
88+
"ticks": false,
89+
"zindex": 0
90+
},
91+
{
92+
"scale": "y",
93+
"orient": "left",
94+
"gridScale": "x",
95+
"grid": true,
96+
"tickCount": {"signal": "ceil(height/40)"},
97+
"domain": false,
98+
"labels": false,
99+
"aria": false,
100+
"maxExtent": 0,
101+
"minExtent": 0,
102+
"ticks": false,
103+
"zindex": 0
104+
},
105+
{
106+
"scale": "x",
107+
"orient": "bottom",
108+
"grid": false,
109+
"title": "date (month)",
110+
"format": {
111+
"signal": "timeUnitSpecifier([\"month\"], {\"year-month\":\"%b %Y \",\"year-month-date\":\"%b %d, %Y \"})"
112+
},
113+
"labelFlush": true,
114+
"labelOverlap": true,
115+
"tickMinStep": {
116+
"signal": "datetime(2001, 1, 1, 0, 0, 0, 0) - datetime(2001, 0, 1, 0, 0, 0, 0)"
117+
},
118+
"zindex": 0
119+
},
120+
{
121+
"scale": "y",
122+
"orient": "left",
123+
"grid": false,
124+
"title": "Mean of precipitation",
125+
"labelOverlap": true,
126+
"tickCount": {"signal": "ceil(height/40)"},
127+
"zindex": 0
128+
}
129+
]
130+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
3+
"data": {"url": "data/seattle-weather.csv"},
4+
"mark": {"type": "bar", "xOffset": -2, "x2Offset": 2},
5+
"encoding": {
6+
"x": {"timeUnit": "month", "field": "date", "type": "temporal"},
7+
"y": {"aggregate": "mean", "field": "precipitation"}
8+
}
9+
}

src/compile/mark/encode/position-rect.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ function rectBinPosition({
302302
const vgChannel2 = getVgPositionChannel(channel2);
303303

304304
const {offset} = positionOffset({channel, markDef, encoding, model, bandPosition: 0});
305+
const {offset: offset2} = positionOffset({channel: channel2, markDef, encoding, model, bandPosition: 0});
305306

306307
const bandPosition = isSignalRef(bandSize)
307308
? {signal: `(1-${bandSize.signal})/2`}
@@ -315,7 +316,7 @@ function rectBinPosition({
315316
fieldDef,
316317
scaleName,
317318
bandPosition,
318-
offset: getBinSpacing(channel2, spacing, reverse, axisTranslate, offset)
319+
offset: getBinSpacing(channel2, spacing, reverse, axisTranslate, offset2 ?? offset)
319320
}),
320321
[vgChannel]: rectBinRef({
321322
fieldDef,

0 commit comments

Comments
 (0)