Chartist:删除所有网格线但显示轴

Chartist: remove all grid lines but display axis

我知道有一个选项可以删除网格线:showGrid: false。但这将删除包括主轴在内的所有网格线。

有没有办法像这样去掉除主轴以外的所有网格线?

纯 css:

可以实现
.ct-vertical ~ .ct-vertical {
    stroke: none;
}
.ct-horizontal ~ .ct-horizontal {
    stroke: none;
}