Purple Pie

Purple Pie is a very simple pie chart plugin for jQuery. The usage needs a bit of work, but it’s easy. Specify slice values in a data-slices parameter for the container element, invoke the plugin, and you’ve got some pie charts.





Definition of slices:

1
<div class="pie-pan" data-slices="[25,10,30]"></div>

And invocation with some options:

1
2
3
4
$('#container .pie-pan').purplePie({ 'background-color': '#f6f6f6',
                                     'size': '40px',
                                     'colors': ['#810f7c', '#8856a7', '#8c96c6', '#b3cde3', '#edf8fb']
});

Comments