Welcome back, Allie!

You have 12 new messages and 7 new notifications.
// date range picker $(function() { $('input[name="daterange"]').daterangepicker({ opens: 'left' }, function(start, end, label) { console.log("A new date selection was made: " + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD')); }); })
NEW EMPLOYEE
51 13%
Analytics for last week
EXPENSE
$3,251 13%
Analytics for last week
Revenue
$18,925 78%
Analytics for last week
NEW LEADS
125 55%
Analytics for last week

Welcome Back, Chris!!

Need help? Check out the documentation of Luno Admin. It includes tons of Widgets, Components, and Elements with easy-to-follow documentation.

Visit Documentation
Income
Expenses
Revenue
JanJanFebFebMarchMarchAprAprMayMayJunJunJulyJulyAugAugSeptSeptOctOctNovNovDecDec10010090908080707060605050404030302020101000
series-1
series-2
series-3
Total100
Available BTC View Account

0.0386245 BTC

Buy this month
3.0675432 BTC
Sell this month
2.0345618 BTC
  • LUNO_admin.zip
  • reposrt_2020.pdf
  • package.json
  • bootstrap.min.css
Showing 4 out of 24 downloads.

$7,431.14 USD

0% 100%
Gross value $3,500.71 +12.1%
Net volume from sales $2,980.45 +6.9%
New volume from sales $950.00 -1.5%
Other 32 1.9%
// LUNO Revenue var options = { series: [{ name: 'Income', data: [440, 505, 414, 671, 227, 413, 201, 352, 752, 320, 257, 160] }, { name: 'Expenses', data: [123, 142, 135, 127, 143, 122, 117, 131, 122, 122, 112, 116] }, { name: 'Revenue', data: [223, 242, 235, 227, 243, 222, 217, 231, 222, 222, 212, 216] }], chart: { type: 'bar', height: 260, stacked: true, stackType: '100%', toolbar: { show: false, }, }, colors: ['var(--chart-color1)', 'var(--chart-color2)', 'var(--chart-color3)'], responsive: [{ breakpoint: 480, options: { legend: { position: 'bottom', offsetX: -10, offsetY: 0 } } }], xaxis: { categories: ['Jan', 'Feb', 'March', 'Apr', 'May', 'Jun', 'July', 'Aug', 'Sept', 'Oct', 'Nov', 'Dec'], }, fill: { opacity: 1 }, dataLabels: { enabled: false, }, legend: { position: 'bottom', horizontalAlign: 'center', }, }; var chart = new ApexCharts(document.querySelector("#apex-AudienceOverview"), options); chart.render(); // Sales by Category var options = { chart: { height: 280, type: 'donut', }, plotOptions: { pie: { donut: { labels: { show: true, total: { showAlways: true, show: true } } } } }, dataLabels: { enabled: false, }, legend: { position: 'bottom', horizontalAlign: 'center', show: true, }, colors: ['var(--chart-color1)', 'var(--chart-color2)', 'var(--chart-color3)'], series: [55, 35, 10], } var chart = new ApexCharts(document.querySelector("#apex-SalesbyCategory"), options); chart.render();