Custom Legend In Chart.js 2.1.3
Is there a way to move and manipulate the legend in the Pie chart for Chart.js? Specifically I want to move it to the left or right of my pie chart and have it in a list-style inst
Solution 1:
When you are adding custom legend to element of your choice, you need to also add CSS for that element. Once you add it colored boxes will be shown.
In your case you need to add below css class to div
element.
.pieLegendlispan{
display: inline-block;
width: 12px;
height: 12px;
margin-right: 5px;
}
Post a Comment for "Custom Legend In Chart.js 2.1.3"