Vaadin Charts是否提供了一种即时格式化工具提示的方法。我想将一些逻辑绑定到工具提示上的值表示。代替 SOME_STRING,我需要reverseNormalization函数来更改值。
Map coefficients = new HashMap();
Chart chart = new Chart(ChartType.LINE);
Configuration conf = chart.getConfiguration();
Tooltip tooltip = conf.getTooltip();
tooltip.setFormatter(
"function() { " +
"return SOME_STRING }"
);
func reverseNormalization(String name, Double normalizedValue) {
return normalizedValue * coefficients.get(name);;
}