Rename horizontal bar chart to vertical
Because that's what it actually is 🥴
This commit is contained in:
parent
c509deb092
commit
a707afb4fe
|
|
@ -1,7 +1,7 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import IconLogout from "@/components/icons/IconLogout.vue";
|
import IconLogout from "@/components/icons/IconLogout.vue";
|
||||||
import IconSettings from "@/components/icons/IconSettings.vue";
|
import IconSettings from "@/components/icons/IconSettings.vue";
|
||||||
import HorizontalBarChart from "@/components/ui/HorizontalBarChart.vue";
|
import VerticalBarChart from "@/components/ui/VerticalBarChar.vue";
|
||||||
import ItCheckbox from "@/components/ui/ItCheckbox.vue";
|
import ItCheckbox from "@/components/ui/ItCheckbox.vue";
|
||||||
import ItCheckboxGroup from "@/components/ui/ItCheckboxGroup.vue";
|
import ItCheckboxGroup from "@/components/ui/ItCheckboxGroup.vue";
|
||||||
import ItDropdown from "@/components/ui/ItDropdown.vue";
|
import ItDropdown from "@/components/ui/ItDropdown.vue";
|
||||||
|
|
@ -481,11 +481,11 @@ function log(data: any) {
|
||||||
title="Frage 9"
|
title="Frage 9"
|
||||||
text="Wie zufrieden bist du mit dem Kurs “Überbetriebliche Kurse” im Allgemeinen?"
|
text="Wie zufrieden bist du mit dem Kurs “Überbetriebliche Kurse” im Allgemeinen?"
|
||||||
/>
|
/>
|
||||||
<HorizontalBarChart title="Frage X" text="Fragentext" :ratio="0.5" />
|
<VerticalBarChart title="Frage X" text="Fragentext" :ratio="0.5" />
|
||||||
<HorizontalBarChart title="Frage X" text="Fragentext" :ratio="0.8" />
|
<VerticalBarChart title="Frage X" text="Fragentext" :ratio="0.8" />
|
||||||
<HorizontalBarChart title="Frage X" text="Fragentext" :ratio="0.2" />
|
<VerticalBarChart title="Frage X" text="Fragentext" :ratio="0.2" />
|
||||||
<HorizontalBarChart title="Frage X" text="Fragentext" :ratio="2" />
|
<VerticalBarChart title="Frage X" text="Fragentext" :ratio="2" />
|
||||||
<HorizontalBarChart title="Frage X" text="Fragentext" :ratio="0" />
|
<VerticalBarChart title="Frage X" text="Fragentext" :ratio="0" />
|
||||||
</div>
|
</div>
|
||||||
</main>
|
</main>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue