- aggiornato sistema per inviare le newsletter !

This commit is contained in:
Surya Paolo
2024-02-08 01:35:23 +01:00
parent a0b10336de
commit 288318fdb6
590 changed files with 4611 additions and 98 deletions

View File

@@ -7,7 +7,7 @@ import { useGlobalStore } from '@store/globalStore'
import { useI18n } from '@/boot/i18n'
import { useQuasar } from 'quasar'
import { Chart, ChartItem, ChartConfiguration } from 'chart.js'
import { Chart, BarController, BarElement, LineController, LinearScale, CategoryScale, PointElement, LineElement, Title, ChartItem, ChartConfiguration } from 'chart.js';
export default defineComponent({
@@ -68,6 +68,9 @@ export default defineComponent({
}
function mounted() {
Chart.register(BarController, BarElement,
LineController, LinearScale, CategoryScale, PointElement, LineElement, Title);
myarrdata.value = []
myarrdataLine.value = []
myarrbg.value = []
@@ -173,7 +176,7 @@ export default defineComponent({
fill: true,
}
if (props.showMedia)
if (props.showMedia && myarrdataLine.value)
chartData.datasets.push(media)
const configBar: ChartConfiguration = {