Search code examples
angularngx-charts

Remove even, odd classes in ngx-chart with multiple data sets?


Is there a configuration within ngx-chart to remove the grey background in the following chart: https://embed.plnkr.co/2eQ9jheOTm8i74vp2EmP?show=preview


Solution

  • I thnk you just need to use css rule

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

    there is no option to disable this one in their api.