如何在面积图上显示背景网格?

时间:2019-06-26 10:39:05

标签: amcharts

我需要在背景区域图上显示网格线。我正在研究amcharts面积图。我需要类似附件图像的图表。

image

2 个答案:

答案 0 :(得分:1)

您必须使用TB103_xxx TB037_bbb TB104_ccc 并在图表配置中将其设置为true。

gridAboveGraphs

答案 1 :(得分:1)

对于v4,请查看Axis Ranges for Series上的指南。

我们的Chart With Gaps In Data demo完全按照您的屏幕快照中的显示进行操作:

screenshot of our demo with areas colored by their value along the y axis

允许网格线通过的部分是fill通过fillOpacity是透明的:

// There's no series.fill because it has its own color already
series.fillOpacity = 0.2;

// [...]
range.contents.stroke = chart.colors.getIndex(2);
range.contents.fill = range.contents.stroke;
range.contents.fillOpacity = 0.2;

让我们知道这是否有帮助。