如果要在 v3 中禁用饼图工具提示,请showBalloon在 makeChart 调用中设置为 false:
AmCharts.makeChart("...", {
// ...
"showBalloon": false,
// ...
});
Run Code Online (Sandbox Code Playgroud)
在 v4 中,将系列工具提示disabled属性设置为 true。
pieSeries.tooltip.disabled = true;
Run Code Online (Sandbox Code Playgroud)