[Chartjs]-Remove bullet points from chart.js legend

1👍

You need to add list-style-type: none; to the li elements i.e. something like

.chart-legend li {
    list-style-type: none;
}

Your current CSS ruleset targets .chart-legend li span – adding list-style-type: none; there will not help.

Leave a comment