gpt4 book ai didi

vega-lite - 如何在Vega-lite轴标题中放置换行符?

转载 作者:行者123 更新时间:2023-12-03 16:13:08 24 4
gpt4 key购买 nike

我是Vega-lite的新手,我想弄清楚在轴标题中是否可能出现换行符。我有一个长轴标题,例如:

“长轴标题太长,无法容纳在图表下方”

我试过了:

“长轴标题太长,无法容纳在图表下方”,并且
“长轴标题也\
很适合在图表下显示”

“\n”似乎没有任何作用。 “\[enter]”只是在行中添加了额外的空间。

我的x和y编码看起来像这样:

encoding: {
x: {field: 'a',
type: 'ordinal',
sort: {"encoding": "x"},
axis: {"title": "Knowledge of the elder\
categories would melt\
your psyche",
"titleFontSize": 30,
}
},
y: {field: 'b',
type: 'quantitative',
axis: {"title": "Your puny mortal mind\ncannot comprehend the units\nof the multiverse!",
"titleFontSize": 14,
}
}
}

我没有收到错误消息,但也没有得到换行符。我要么没有变化(来自\n),要么怪异的间距(来自[enter])。

谢谢!

最佳答案

在Vega-Lite 4.0或更高版本中,可以通过传递字符串数组在标题中指定多行文本。例如:

{"data": {
"values": [
{"a": "A", "b": 28},
{"a": "B", "b": 55},
{"a": "C", "b": 43},
{"a": "D", "b": 91},
{"a": "E", "b": 81},
{"a": "F", "b": 53},
{"a": "G", "b": 19},
{"a": "H", "b": 87},
{"a": "I", "b": 52}
]
},
"mark": "bar",
"encoding": {
"x": {
"field": "a",
"type": "ordinal",
"title": ["First line of title", "second line of title"]
},
"y": {"field": "b", "type": "quantitative"}
}
}

enter image description here

关于vega-lite - 如何在Vega-lite轴标题中放置换行符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57116167/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com