如何将格式化规则应用于工具提示?
在下面的示例中(来自https://observablehq.com/@ee2dev/exploring-a-csv-file-with-vega-lite中的单元格vis1),数字和时间格式仅应用于轴。
vis1 = {
vl.vega.timeFormatLocale(locale); // show dates in German
vl.vega.formatLocale(locale); // show numbers with German groupings/ separators
const plot = vl.markCircle({tooltip: true})
.data(processedData)
.encode(
vl.x().field(vlx).type(type(vlx)),
vl.y().field(vly).type(type(vly)),
vl.color().field(vlcolor).type(type(vlcolor)),
vl.size().field(vlsize).type(type(vlsize)),
// vl.tooltip([vlx, vly, vlsize, vlcolor,]),
);
return plot.render();
// return html`<pre>${JSON.stringify(plot.toObject(), 0, 2)}</pre>`; // format JSON data
}
任何帮助将不胜感激。