MIF_E31222707/public/build/assets/chart-config-5c99e0a8.js

2 lines
1.1 KiB
JavaScript

$(document).ready(function(){let e=document.getElementById("salesPurchasesChart");$.get("/sales-purchases/chart-data",function(a){new Chart(e,{type:"bar",data:{labels:a.sales.original.days,datasets:[{label:"Sales",data:a.sales.original.data,backgroundColor:["#6366F1"],borderColor:["#6366F1"],borderWidth:1},{label:"Purchases",data:a.purchases.original.data,backgroundColor:["#A5B4FC"],borderColor:["#A5B4FC"],borderWidth:1}]},options:{scales:{y:{beginAtZero:!0}}}})});let t=document.getElementById("currentMonthChart");$.get("/current-month/chart-data",function(a){new Chart(t,{type:"doughnut",data:{labels:["Sales","Purchases","Expenses"],datasets:[{data:[a.sales,a.purchases,a.expenses],backgroundColor:["#F59E0B","#0284C7","#EF4444"],hoverBackgroundColor:["#F59E0B","#0284C7","#EF4444"]}]}})});let r=document.getElementById("paymentChart");$.get("/payment-flow/chart-data",function(a){new Chart(r,{type:"line",data:{labels:a.months,datasets:[{label:"Payment Sent",data:a.payment_sent,fill:!1,borderColor:"#EA580C",tension:0},{label:"Payment Received",data:a.payment_received,fill:!1,borderColor:"#2563EB",tension:0}]}})})});