向 AmCharts4 哑铃图添加水平线
Add horizontal line to AmCharts4 Dumbbell plot
我想在 AmCharts4 Dumbbell plot 中添加一条水平线。由于 x 轴是分类的,这可能吗?该线必须具有与网格线不同的设置(例如更大、虚线、彩色)。
找到方法了here。
var range = valueAxis.axisRanges.create();
range.value = 1000;
range.grid.stroke = am4core.color("#396478");
range.grid.strokeWidth = 2;
range.grid.strokeOpacity = 1;
range.grid.strokeDasharray = "6,3";
这当然适用于其他类型的图表。
我想在 AmCharts4 Dumbbell plot 中添加一条水平线。由于 x 轴是分类的,这可能吗?该线必须具有与网格线不同的设置(例如更大、虚线、彩色)。
找到方法了here。
var range = valueAxis.axisRanges.create();
range.value = 1000;
range.grid.stroke = am4core.color("#396478");
range.grid.strokeWidth = 2;
range.grid.strokeOpacity = 1;
range.grid.strokeDasharray = "6,3";
这当然适用于其他类型的图表。