{
"$schema": "https://vega.github.io/schema/vega-lite/v2.json",
"width": 1200,
"height": 900,
"data": {
"url": "data/seattle-weather.csv"
},
"mark": "bar",
"encoding": {
"x": {
"aggregate": "count",
"type": "quantitative"
},
"size": {
"value": 40
},
"y": {
"field": "date",
"type": "temporal",
"timeUnit": "month",
"axis": {
"title": "Regions"
}
},
"color": {
"field": "weather",
"type": "nominal",
"scale": {
"domain": [
"0-20 days",
"21-27 days",
">28 days"
],
"range": [
"red",
"orange",
"green"
]
},
"legend": {
"title": "Case Ageing"
}
}
}
}
答案 0 :(得分:3)
我能理解你的困惑。似乎有三个问题:
padding
,paddingInner
和paddingOuter
控制,所有这些都记录在encoding level并在config level。您可能遇到问题,因为您使用"size": {"value": 40}
手动设置大小,但我猜这是实验中的残余。这是gist的工作规范。您可以使用paddingOuter
,paddingInner
或添加padding
来应用于内部和外部。