0

ngx-chart 中是否有配置来删除下图中的灰色背景:https ://embed.plnkr.co/2eQ9jheOTm8i74vp2EmP?show=preview

4

2 回答 2

0

我想你只需要使用 css 规则

.ngx-charts .grid-panel.odd rect {
    fill: none;
}

没有选项可以在他们的 api 中禁用此选项。

于 2019-01-18T14:47:01.820 回答
0

为避免使用!important,只需定义一个更具体的选择器。此外,您可能需要使用 ng-deep 来克服角度视图封装,但请记住,它被标记为最终将被弃用的东西。

::ng-deep
.ngx-charts g .grid-panel.odd rect {
  fill: none;
}
于 2020-04-06T16:16:18.197 回答