Tryag File Manager
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
home
/
ynormeco
/
.trash
/
studywallet
/
js
/
flot
/
custom
/
Or
Select Your Path :
Upload File :
New :
File
Dir
/home/ynormeco/.trash/studywallet/js/flot/custom/rectangular-pie.js
$(function () { var data, chartOptions; data = [ { label: "Apples", data: Math.floor (Math.random() * 100 + 150) }, { label: "Oranges", data: Math.floor (Math.random() * 100 + 390) }, { label: "Pinaples", data: Math.floor (Math.random() * 100 + 530) }, { label: "Grapes", data: Math.floor (Math.random() * 100 + 90) }, { label: "Bananas", data: Math.floor (Math.random() * 100 + 320) } ]; chartOptions = { series: { pie: { show: true, radius: 500, stroke: { width: 0 } } }, shadowSize: 0, legend: { position: 'se' }, tooltip: true, tooltipOpts: { content: '%s: %y' }, grid:{ hoverable: true, clickable: false, borderWidth: 1, tickColor: '#eaeaea', borderColor: '#eaeaea', }, shadowSize: 0, colors: ['#3a86c8', '#64bd63', '#6dc6cd', '#52bf8a', '#638ca5'], }; var holder = $('#rectangular-pie'); if (holder.length) { $.plot(holder, data, chartOptions ); } });