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/pie.js
$(function () { var data, chartOptions; data = [ { label: "HTML", data: Math.floor (Math.random() * 100 + 190) }, { label: "CSS", data: Math.floor (Math.random() * 100 + 220) }, { label: "PHP", data: Math.floor (Math.random() * 100 + 370) }, { label: "jQuery", data: Math.floor (Math.random() * 100 + 120) }, { label: "RUBY", data: Math.floor (Math.random() * 100 + 430) } ]; chartOptions = { series: { pie: { show: true, innerRadius: 0, stroke: { width: 0 } } }, grid:{ hoverable: true, clickable: false, borderWidth: 0, tickColor: '#eaeaea', borderColor: '#eaeaea', }, legend: { position: 'nw' }, shadowSize: 0, tooltip: true, tooltipOpts: { content: '%s: %y' }, colors: ['#ffb400', '#f5907c', '#f35454', '#fee074', '#66c0dc'], }; var holder = $('#pie-chart'); if (holder.length) { $.plot(holder, data, chartOptions ); } });