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.
ngx-chart 中是否有配置来删除下图中的灰色背景:https ://embed.plnkr.co/2eQ9jheOTm8i74vp2EmP?show=preview
我想你只需要使用 css 规则
.ngx-charts .grid-panel.odd rect { fill: none; }
没有选项可以在他们的 api 中禁用此选项。
为避免使用!important,只需定义一个更具体的选择器。此外,您可能需要使用 ng-deep 来克服角度视图封装,但请记住,它被标记为最终将被弃用的东西。
!important
::ng-deep .ngx-charts g .grid-panel.odd rect { fill: none; }