Files
FlightsAPI/resources/js/Components/FlightsGoneBy/Charts/FlightsPerDayChart.vue
T

23 lines
508 B
Vue

<script setup lang="ts">
import {FlightStats} from "@/Composables/useFlightStats";
import VerticalBarChart from "@/Components/FlightsGoneBy/Charts/ChartTypes/VerticalBarChart.vue";
const props = defineProps<{
flightStats: FlightStats
}>()
</script>
<template>
<VerticalBarChart
title="Flights per Day"
type="bar"
:height="220"
:categories="flightStats.perDay.value.days"
:series="flightStats.perDay.value.series"
/>
</template>
<style scoped>
</style>