Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在我的 html 页面中获得一个 oracle jet 条形图,如此处所述:我能够正确地得到它。但是,我不希望网格线出现在背景的图表中。有没有办法摆脱它们?
您可以使用以下代码设置网格线的宽度。0 - 隐藏线条,更改此值以增加宽度。
self.yAxis = ko.pureComputed(function() { return { majorTick: { lineWidth: 0, } }; });
并在 html 中设置
y-axis="[[yAxis]]"