自定义 Amcharts v4 工具提示边框颜色

Customize Amcharts v4 tooltip border color

我应用了这样的代码:

var series = chart.series.push(new am4charts.LineSeries());
series.tooltip.getFillFromObject = false;
series.tooltip.background.fill = am4core.color("#fff");
series.tooltip.border.fill = am4core.color("#000");
series.tooltip.label.fill = am4core.color("#000");
series.tooltipText = "{date.formatDate('d MMM, yyyy')}: [bold]{value}";
series.dataFields.dateX = "date";
series.dataFields.valueY = "value";

但不知何故工具提示未加载边框颜色。

在 amcharts 中,边框颜色字段是 stroke。您可以在 tooltip itself, on the tooltip.background or on the tooltip.label 上设置它。例如像这样:

series.tooltip.background.stroke = am4core.color("#000");

您还可以使用 strokeWidth:

更改边框宽度
series.tooltip.background.strokeWidth = 2;

Here是工作码笔