You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
1007 B
33 lines
1007 B
/*=========================================================================================
|
|
File Name: donut.js
|
|
Description: Morris donut chart
|
|
----------------------------------------------------------------------------------------
|
|
Item Name: Modern Admin - Clean Bootstrap 4 Dashboard HTML Template
|
|
Version: 1.0
|
|
Author: PIXINVENT
|
|
Author URL: http://www.themeforest.net/user/pixinvent
|
|
==========================================================================================*/
|
|
|
|
// Donut chart
|
|
// ------------------------------
|
|
$(window).on("load", function(){
|
|
|
|
Morris.Donut({
|
|
element: 'donut-chart',
|
|
data: [{
|
|
label: "Custard",
|
|
value: 25
|
|
}, {
|
|
label: "Frosted",
|
|
value: 40
|
|
}, {
|
|
label: "Jam",
|
|
value: 25
|
|
}, {
|
|
label: "Sugar",
|
|
value: 10
|
|
}, ],
|
|
resize: true,
|
|
colors: ['#00A5A8', '#FF7D4D', '#FF4558','#626E82']
|
|
});
|
|
}); |