是否可以使用来自数据源的自定义工具提示文本?
我有一个这样的数据源架构:
schema: {
data: "d",
model: {
fields: {
text: { type: "string" },
value: { type: "number" },
desc: { type: "string " }
}
}
}
我想使用文本作为基本条值,使用 desc 作为工具提示,所以我有这个配置:
series: [{
field: "value",
categoryField: "desc"
}],
categoryAxis: [{
field: "text"
}]
并在工具提示配置中:
tooltip: {
visible: true,
template: "#= category # : #= value # minutes"
}
此配置似乎不起作用。有什么方法可以将desc
字段仅用于工具提示?