Files
lubelog/Views/Vehicle/_GasCostByMonthReport.cshtml
DESKTOP-GENO133\IvanPlex 9102e1ab81 charts
2024-01-03 21:53:43 -07:00

49 lines
1.7 KiB
Plaintext

@model List<GasCostForVehicleByMonth>
<canvas id="bar-chart" class="vehicleDetailTabContainer"></canvas>
<script>
renderChart();
function renderChart() {
var barGraphLabels = [];
var barGraphData = [];
@foreach (GasCostForVehicleByMonth gasCost in Model)
{
@:barGraphLabels.push("@gasCost.MonthName");
@:barGraphData.push(@gasCost.Cost);
}
new Chart($("#bar-chart"), {
type: 'bar',
data: {
labels: barGraphLabels,
datasets: [
{
label: "Gas Expenses by Month",
backgroundColor: ["#00876c", "#43956e", "#67a371", "#89b177", "#a9be80", "#c8cb8b", "#e6d79b", "#e4c281", "#e3ab6b", "#e2925b", "#e07952", "#db5d4f"],
data: barGraphData
}
]
},
options: {
plugins: {
legend: {
labels: {
color: '#fff'
}
}
},
scales: {
y: {
beginAtZero: true,
ticks: {
color: "#fff"
}
},
x: {
ticks: {
color: "#fff"
}
}
}
}
});
}
</script>