primevue-mirror/doc/chart/ComboDoc.vue

288 lines
9.0 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>Different chart types can be combined in the same graph usign the <i>type</i> option of a dataset.</p>
</DocSectionText>
<div class="card">
<Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" />
</div>
<DocSectionCode :code="code" :dependencies="{ 'chart.js': '3.3.2' }" component="Chart" />
</template>
<script>
2023-10-17 13:12:53 +00:00
import EventBus from '@/layouts/AppEventBus';
2023-02-28 08:29:30 +00:00
export default {
data() {
return {
chartData: null,
chartOptions: null,
code: {
2023-09-22 12:54:14 +00:00
basic: `
2023-10-15 09:38:39 +00:00
<Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" />
</div>
</template>
<script>
export default {
data() {
return {
chartData: null,
chartOptions: null
};
},
mounted() {
this.chartData = this.setChartData();
this.chartOptions = this.setChartOptions();
},
methods: {
setChartData() {
const documentStyle = getComputedStyle(document.documentElement);
return {
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [
{
type: 'line',
label: 'Dataset 1',
2024-01-29 13:22:29 +00:00
borderColor: documentStyle.getPropertyValue('--orange-500'),
2023-02-28 08:29:30 +00:00
borderWidth: 2,
fill: false,
tension: 0.4,
data: [50, 25, 12, 48, 56, 76, 42]
},
{
type: 'bar',
label: 'Dataset 2',
2024-01-29 13:22:29 +00:00
backgroundColor: documentStyle.getPropertyValue('--gray-500'),
2023-02-28 08:29:30 +00:00
data: [21, 84, 24, 75, 37, 65, 34],
borderColor: 'white',
borderWidth: 2
},
{
type: 'bar',
label: 'Dataset 3',
2024-01-29 13:22:29 +00:00
backgroundColor: documentStyle.getPropertyValue('--cyan-500'),
2023-02-28 08:29:30 +00:00
data: [41, 52, 24, 74, 23, 21, 32]
}
]
};
},
setChartOptions() {
const documentStyle = getComputedStyle(document.documentElement);
const textColor = documentStyle.getPropertyValue('--text-color');
const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary');
const surfaceBorder = documentStyle.getPropertyValue('--surface-border');
return {
maintainAspectRatio: false,
aspectRatio: 0.6,
plugins: {
legend: {
labels: {
color: textColor
}
}
},
scales: {
x: {
ticks: {
color: textColorSecondary
},
grid: {
color: surfaceBorder
}
},
y: {
ticks: {
color: textColorSecondary
},
grid: {
color: surfaceBorder
}
}
}
};
}
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card">
<Chart type="bar" :data="chartData" :options="chartOptions" class="h-30rem" />
</div>
</template>
<script setup>
import { ref, onMounted } from "vue";
onMounted(() => {
chartData.value = setChartData();
chartOptions.value = setChartOptions();
});
const chartData = ref();
const chartOptions = ref();
const setChartData = () => {
const documentStyle = getComputedStyle(document.documentElement);
return {
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [
{
type: 'line',
label: 'Dataset 1',
2024-01-29 13:22:29 +00:00
borderColor: documentStyle.getPropertyValue('--orange-500'),
2023-02-28 08:29:30 +00:00
borderWidth: 2,
fill: false,
tension: 0.4,
data: [50, 25, 12, 48, 56, 76, 42]
},
{
type: 'bar',
label: 'Dataset 2',
2024-01-29 13:22:29 +00:00
backgroundColor: documentStyle.getPropertyValue('--gray-500'),
2023-02-28 08:29:30 +00:00
data: [21, 84, 24, 75, 37, 65, 34],
borderColor: 'white',
borderWidth: 2
},
{
type: 'bar',
label: 'Dataset 3',
2024-01-29 13:22:29 +00:00
backgroundColor: documentStyle.getPropertyValue('--cyan-500'),
2023-02-28 08:29:30 +00:00
data: [41, 52, 24, 74, 23, 21, 32]
}
]
};
};
const setChartOptions = () => {
const documentStyle = getComputedStyle(document.documentElement);
const textColor = documentStyle.getPropertyValue('--text-color');
const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary');
const surfaceBorder = documentStyle.getPropertyValue('--surface-border');
return {
maintainAspectRatio: false,
aspectRatio: 0.6,
plugins: {
legend: {
labels: {
color: textColor
}
}
},
scales: {
x: {
ticks: {
color: textColorSecondary
},
grid: {
color: surfaceBorder
}
},
y: {
ticks: {
color: textColorSecondary
},
grid: {
color: surfaceBorder
}
}
}
};
}
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
},
mounted() {
this.chartData = this.setChartData();
this.chartOptions = this.setChartOptions();
2023-10-17 13:12:53 +00:00
this.themeChangeListener = () => {
this.chartOptions = this.setChartOptions();
};
EventBus.on('theme-change-complete', this.themeChangeListener);
2023-02-28 08:29:30 +00:00
},
methods: {
setChartData() {
const documentStyle = getComputedStyle(document.documentElement);
return {
labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'],
datasets: [
{
type: 'line',
label: 'Dataset 1',
2024-01-29 13:22:29 +00:00
borderColor: documentStyle.getPropertyValue('--orange-500'),
2023-02-28 08:29:30 +00:00
borderWidth: 2,
fill: false,
tension: 0.4,
data: [50, 25, 12, 48, 56, 76, 42]
},
{
type: 'bar',
label: 'Dataset 2',
2024-01-29 13:22:29 +00:00
backgroundColor: documentStyle.getPropertyValue('--gray-500'),
2023-02-28 08:29:30 +00:00
data: [21, 84, 24, 75, 37, 65, 34],
borderColor: 'white',
borderWidth: 2
},
{
type: 'bar',
label: 'Dataset 3',
2024-01-29 13:22:29 +00:00
backgroundColor: documentStyle.getPropertyValue('--cyan-500'),
2023-02-28 08:29:30 +00:00
data: [41, 52, 24, 74, 23, 21, 32]
}
]
};
},
setChartOptions() {
const documentStyle = getComputedStyle(document.documentElement);
const textColor = documentStyle.getPropertyValue('--text-color');
const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary');
const surfaceBorder = documentStyle.getPropertyValue('--surface-border');
return {
maintainAspectRatio: false,
aspectRatio: 0.6,
plugins: {
legend: {
labels: {
color: textColor
}
}
},
scales: {
x: {
ticks: {
color: textColorSecondary
},
grid: {
color: surfaceBorder
}
},
y: {
ticks: {
color: textColorSecondary
},
grid: {
color: surfaceBorder
}
}
}
};
}
}
};
</script>