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.
Source:stackexchange.com