[Chartjs]-Chart.js stacked area chart grid.borderDash option not working

2👍

As you can read in the migration guide the option has been moved from options.scales[scaleId].grid.borderDash to options.scales[scaleId].border.dash if you make that change it will work fine

-2👍

try set -> display: true instead of false

   border: {
                display: true,
           }

Leave a comment