我们如何在 Amcharts 的系列名称上添加工具提示?
How can we add a tooltip on series name of Amcharts?
如何在悬停Amchart系列名称时添加工具提示。 (希望在所附屏幕截图中的选定区域悬停时添加工具提示)。
添加系列名称,例如:
let series = chart.series.push(new am4charts.LineSeries());
series.name = q1.seriesName;
谢谢!
这里有一个方法。我不知道为什么必须使用 setTimeout
。没有它,values
数组在图表加载时为空。
chart.legend = new am4charts.Legend();
setTimeout(function() {
chart.legend.itemContainers.values[0].tooltipText =
"The [bold {color}]{name}[/] series is awesome!";
chart.legend.itemContainers.values[1].tooltipText =
"The [bold {color}]{name}[/] series is cool!";
chart.legend.itemContainers.values[2].tooltipText =
"The [bold {color}]{name}[/] series is nice!";
}, 500);
如何在悬停Amchart系列名称时添加工具提示。 (希望在所附屏幕截图中的选定区域悬停时添加工具提示)。
添加系列名称,例如:
let series = chart.series.push(new am4charts.LineSeries());
series.name = q1.seriesName;
谢谢!
这里有一个方法。我不知道为什么必须使用 setTimeout
。没有它,values
数组在图表加载时为空。
chart.legend = new am4charts.Legend();
setTimeout(function() {
chart.legend.itemContainers.values[0].tooltipText =
"The [bold {color}]{name}[/] series is awesome!";
chart.legend.itemContainers.values[1].tooltipText =
"The [bold {color}]{name}[/] series is cool!";
chart.legend.itemContainers.values[2].tooltipText =
"The [bold {color}]{name}[/] series is nice!";
}, 500);