primevue-mirror/doc/chart/PieChartDoc.vue

178 lines
5.5 KiB
Vue
Raw Normal View History

2023-02-28 08:29:30 +00:00
<template>
<DocSectionText v-bind="$attrs">
<p>A pie chart is a circular statistical graphic which is divided into slices to illustrate numerical proportion.</p>
</DocSectionText>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-[30rem]" />
2023-02-28 08:29:30 +00:00
</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 {
2024-03-29 07:44:47 +00:00
redrawListener: null,
2023-02-28 08:29:30 +00:00
data() {
return {
chartData: null,
2023-10-17 13:12:53 +00:00
chartOptions: null,
2023-02-28 08:29:30 +00:00
code: {
2023-09-22 12:54:14 +00:00
basic: `
2024-05-20 12:14:38 +00:00
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-[30rem]" />
2023-10-15 09:38:39 +00:00
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-[30rem]" />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script>
export default {
data() {
return {
chartData: null,
2023-10-17 14:07:23 +00:00
chartOptions: null
2023-02-28 08:29:30 +00:00
};
},
mounted() {
this.chartData = this.setChartData();
2023-10-17 14:07:23 +00:00
this.chartOptions = this.setChartOptions();
2023-02-28 08:29:30 +00:00
},
methods: {
setChartData() {
const documentStyle = getComputedStyle(document.body);
return {
labels: ['A', 'B', 'C'],
datasets: [
{
data: [540, 325, 702],
backgroundColor: [documentStyle.getPropertyValue('--p-cyan-500'), documentStyle.getPropertyValue('--p-orange-500'), documentStyle.getPropertyValue('--p-gray-500')],
hoverBackgroundColor: [documentStyle.getPropertyValue('--p-cyan-400'), documentStyle.getPropertyValue('--p-orange-400'), documentStyle.getPropertyValue('--p-gray-400')]
2023-02-28 08:29:30 +00:00
}
]
};
2023-10-17 14:07:23 +00:00
},
setChartOptions() {
const documentStyle = getComputedStyle(document.documentElement);
const textColor = documentStyle.getPropertyValue('--text-color');
return {
plugins: {
legend: {
labels: {
usePointStyle: true,
color: textColor
}
}
}
};
2023-02-28 08:29:30 +00:00
}
}
};
2023-10-15 09:38:39 +00:00
<\/script>
`,
2023-09-22 12:54:14 +00:00
composition: `
<template>
2024-05-20 12:14:38 +00:00
<div class="card flex justify-center">
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-[30rem]" />
2023-02-28 08:29:30 +00:00
</div>
</template>
<script setup>
import { ref, onMounted } from "vue";
onMounted(() => {
chartData.value = setChartData();
2023-10-17 14:07:23 +00:00
chartOptions.value = setChartOptions();
2023-02-28 08:29:30 +00:00
});
const chartData = ref();
2023-10-17 14:07:23 +00:00
const chartOptions = ref();
2023-02-28 08:29:30 +00:00
const setChartData = () => {
const documentStyle = getComputedStyle(document.body);
return {
labels: ['A', 'B', 'C'],
datasets: [
{
data: [540, 325, 702],
backgroundColor: [documentStyle.getPropertyValue('--p-cyan-500'), documentStyle.getPropertyValue('--p-orange-500'), documentStyle.getPropertyValue('--p-gray-500')],
hoverBackgroundColor: [documentStyle.getPropertyValue('--p-cyan-400'), documentStyle.getPropertyValue('--p-orange-400'), documentStyle.getPropertyValue('--p-gray-400')]
2023-02-28 08:29:30 +00:00
}
]
};
};
2023-10-17 14:07:23 +00:00
const setChartOptions = () => {
const documentStyle = getComputedStyle(document.documentElement);
const textColor = documentStyle.getPropertyValue('--text-color');
return {
plugins: {
legend: {
labels: {
usePointStyle: true,
color: textColor
}
}
}
};
};
2023-10-15 09:38:39 +00:00
<\/script>
`
2023-02-28 08:29:30 +00:00
}
};
},
beforeUnmount() {
2024-03-29 07:44:47 +00:00
EventBus.off('dark-mode-toggle-complete', this.redrawListener);
EventBus.off('theme-palette-change', this.redrawListener);
},
2023-02-28 08:29:30 +00:00
mounted() {
this.chartData = this.setChartData();
2023-10-17 13:12:53 +00:00
this.chartOptions = this.setChartOptions();
2024-03-29 07:44:47 +00:00
this.redrawListener = () => {
2023-10-17 13:12:53 +00:00
this.chartOptions = this.setChartOptions();
};
2024-03-29 07:44:47 +00:00
EventBus.on('theme-palette-change', this.redrawListener);
EventBus.on('dark-mode-toggle-complete', this.redrawListener);
2023-02-28 08:29:30 +00:00
},
methods: {
setChartData() {
2023-10-17 13:12:53 +00:00
const documentStyle = getComputedStyle(document.documentElement);
2023-02-28 08:29:30 +00:00
return {
labels: ['A', 'B', 'C'],
datasets: [
{
data: [540, 325, 702],
backgroundColor: [documentStyle.getPropertyValue('--p-cyan-500'), documentStyle.getPropertyValue('--p-orange-500'), documentStyle.getPropertyValue('--p-gray-500')],
hoverBackgroundColor: [documentStyle.getPropertyValue('--p-cyan-400'), documentStyle.getPropertyValue('--p-orange-400'), documentStyle.getPropertyValue('--p-gray-400')]
2023-02-28 08:29:30 +00:00
}
]
};
2023-10-17 13:12:53 +00:00
},
setChartOptions() {
const documentStyle = getComputedStyle(document.documentElement);
const textColor = documentStyle.getPropertyValue('--text-color');
return {
plugins: {
legend: {
labels: {
usePointStyle: true,
color: textColor
}
}
}
};
2023-02-28 08:29:30 +00:00
}
}
};
</script>