Amcharts 上的垂直线而不是网格

Vertical line on Amcharts instead of the grid

如何设置与类别轴相关但不是网格的垂直线? 看图片看看我在找什么。 它不是网格,我认为它既不是趋势线也不是指南。跟数据有关

任何帮助将不胜感激。

(我尝试使用编辑器找到它...没有神奇的结果哈哈)

Amchart picture

amchart my result

这就是我解决问题的方法:

在 "type" 之后的某处:"serial",

        "gridAboveGraphs": true,  // to get the vertical lines above the graph

我在 "categoryAxis" 中添加了:{ ... }

            "gridAlpha": 1,  // to make the vertical lines appear
            "gridColor": "#ffffff",   // to set the color of the lines
            "gridPosition": "middle",   // instead of 'start' to see the lines like I wanted

我要感谢那些试图帮助我的人。 最好的问候。