Improve health condition charts.

This commit is contained in:
Joshua Bemenderfer
2022-01-01 13:18:28 -05:00
parent b02aa6e0b3
commit 6ca85aaef1
22 changed files with 60 additions and 45 deletions

View File

@@ -1,6 +1,6 @@
<template>
<Card>
<h2 class="mb-6 text-xl text-indigo-900 flex justify-between items-center">
<h2 class="mb-6 text-xl text-violet-900 flex justify-between items-center">
Daily Hospitalizations per 10,000 Residents
<select v-model="chart" class="text-base m-0" v-if="parameters.county !== '-- Unknown --'">
@@ -14,7 +14,7 @@
<JSCharting v-if="chart === 'line'" :options="areaOptions"></JSCharting>
</template>
<template v-else>
<div class="w-full h-full flex items-center justify-center text-2xl text-indigo-700 font-bold">No Data</div>
<div class="w-full h-full flex items-center justify-center text-2xl text-violet-700 font-bold">No Data</div>
</template>
</Card>
</template>