Viewing file: budget.php (2.65 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<div class="card"> <div class="filter"> <a class="icon" href="#" data-bs-toggle="dropdown"><i class="bi bi-three-dots"></i></a> <ul class="dropdown-menu dropdown-menu-end dropdown-menu-arrow"> <li class="dropdown-header text-start"> <h6>Filter</h6> </li>
<li><a class="dropdown-item" href="#">Today</a></li> <li><a class="dropdown-item" href="#">This Month</a></li> <li><a class="dropdown-item" href="#">This Year</a></li> </ul> </div>
<div class="card-body pb-0"> <h5 class="card-title">Budget Report <span>| This Month</span></h5>
<div id="budgetChart" style="min-height: 400px;" class="echart"></div>
<script> document.addEventListener("DOMContentLoaded", () => { var budgetChart = echarts.init(document.querySelector("#budgetChart")).setOption({ legend: { data: ['Allocated Budget', 'Actual Spending'] }, radar: { // shape: 'circle', indicator: [{ name: 'Sales', max: 6500 }, { name: 'Administration', max: 16000 }, { name: 'Information Technology', max: 30000 }, { name: 'Customer Support', max: 38000 }, { name: 'Development', max: 52000 }, { name: 'Marketing', max: 25000 } ] }, series: [{ name: 'Budget vs spending', type: 'radar', data: [{ value: [4200, 3000, 20000, 35000, 50000, 18000], name: 'Allocated Budget' }, { value: [5000, 14000, 28000, 26000, 42000, 21000], name: 'Actual Spending' } ] }] }); }); </script>
</div> </div>
|