自动调整标签位置

Auto adjust label positions

我正在使用 setResultTableFormatter

添加自定义图表标签
 line[key].setResultTableFormatter((builder, series, xValue, yValue) => {
     return builder
            .addRow(name)
            .addRow(yValue.toFixed(2))
            .addRow(timedata[xValue.toFixed(0)])

});

如果仪表板中有 6 个图表,这在具有 4 个 charts.But 的仪表板中工作正常。标签隐藏在右侧,如果我将光标放在 page.PLease 检查的右侧下面的例子。

请使用chart.setPadding在有问题的边添加填充

chart.setPadding({ right: 60 })