只需提供一个刻度。享受
{
"$schema": "https://vega.github.io/schema/vega-lite/v5.json",
"width": 200,
"height": 200,
"config": {
"background": "transparent",
"view": {"stroke": "transparent"},
"aria": true
},
"data": {
"name": "table",
"values": [
{"x": 0, "y": 0, "c": "Alpha"},
{"x": 1, "y": 3, "c": "Alpha"},
{"x": 2, "y": 1, "c": "Alpha"},
{"x": 0, "y": 1, "c": "Beta"},
{"x": 1, "y": 2, "c": "Beta"},
{"x": 2, "y": 0, "c": "Beta"}
]
},
"mark": {"type": "line", "interpolate": "monotone", "point": false},
"encoding": {
"x": {"type": "quantitative", "field": "x"},
"y": {"type": "quantitative", "field": "y"},
"color": {
"field": "c",
"type": "nominal",
"scale": {
"domain": ["Alpha", "Beta"],
"range": ["rgb(200, 200, 200)", "rgb(28, 51, 99)"]
}
},
"strokeDash": {
"field": "c",
"type": "nominal",
"scale": {"domain": ["Alpha", "Beta"], "range": [0, 10]}
}
}
}