Light mode support
Some checks failed
linter / quality (push) Failing after 6m3s
tests / ci (8.4) (push) Successful in 5m40s
tests / ci (8.5) (push) Successful in 5m1s

This commit is contained in:
2026-03-22 17:14:23 +01:00
parent 88a932391b
commit 9d4b02fab5
3 changed files with 16 additions and 9 deletions

View File

@@ -5,11 +5,14 @@ import { Bar } from 'vue-chartjs';
import { colors, gridColor, gridColorBold } from '@/types/graphs';
import type { Iteration } from '@/types/perceptron';
import Toggle from './ui/toggle/Toggle.vue';
import { usePage } from '@inertiajs/vue3';
const props = defineProps<{
iterations: Iteration[];
}>();
const page = usePage();
const epochErrorOnly = ref<boolean>(false);
/**
@@ -84,7 +87,7 @@ const datasets = computed<
<template>
<Bar
class="flex"
class="bg-primary dark:bg-transparent!"
:options="{
responsive: true,
maintainAspectRatio: true,