Chartjs-Chartjs custom colors not displaying when dataset is changed

0๐Ÿ‘

โœ…

I actually figured this out. If I replace the reference in the html to the colors array with just the information itself like this

[colors]=" 
            [{
              backgroundColor: 'rgba(0,100,0,0.2)',
              borderColor: 'rgba(0,0,100,1)',
              pointBackgroundColor: 'rgba(148,159,177,1)',
              pointBorderColor: '#fff',
              pointHoverBackgroundColor: '#fff',
              pointHoverBorderColor: 'rgba(148,159,177,0.8)',
              fill: false
            }]"

and I also change the data1 and data2 variables to slices (using Arrays.slice) of the original super dataset, it works.

Leave a comment