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/vertical.js
$(function () { var d1, d2, d3, data, chartOptions; d1 = [ [1325376000000, 1200], [1328054400000, 700], [1330560000000, 1000], [1333238400000, 600], [1335830400000, 350] ]; d2 = [ [1325376000000, 800], [1328054400000, 600], [1330560000000, 300], [1333238400000, 350], [1335830400000, 300] ]; data = [{ label: 'Received', data: d1 },{ label: 'Sent', data: d2 }]; chartOptions = { xaxis: { min: (new Date(2011, 11, 15)).getTime(), max: (new Date(2012, 04, 18)).getTime(), mode: "time", tickSize: [2, "month"], monthNames: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"], tickLength: 0 }, grid:{ hoverable: true, clickable: false, borderWidth: 1, tickColor: '#eaeaea', borderColor: '#eaeaea', }, bars: { show: true, barWidth: 24*24*60*60*300, fill: true, lineWidth: 1, order: true, lineWidth: 0, fillColor: { colors: [ { opacity: 1 }, { opacity: 1 } ] } }, shadowSize: 0, tooltip: true, tooltipOpts: { content: '%s: %y' }, colors: ['#3a86c8', '#64bd63', '#6dc6cd', '#52bf8a', '#638ca5'], } var holder = $('#vertical-chart'); if (holder.length) { $.plot(holder, data, chartOptions ); } });