primevue-mirror/doc/chart/PieChartDoc.vue

172 lines
5.3 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>
<div class="card flex justify-content-center">
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-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,
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: `
2023-10-15 09:38:39 +00:00
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-30rem" />
`,
2023-09-22 12:54:14 +00:00
options: `
<template>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-30rem" />
</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('--blue-500'), documentStyle.getPropertyValue('--yellow-500'), documentStyle.getPropertyValue('--green-500')],
hoverBackgroundColor: [documentStyle.getPropertyValue('--blue-400'), documentStyle.getPropertyValue('--yellow-400'), documentStyle.getPropertyValue('--green-400')]
}
]
};
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>
2023-02-28 08:29:30 +00:00
<div class="card flex justify-content-center">
<Chart type="pie" :data="chartData" :options="chartOptions" class="w-full md:w-30rem" />
</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('--blue-500'), documentStyle.getPropertyValue('--yellow-500'), documentStyle.getPropertyValue('--green-500')],
hoverBackgroundColor: [documentStyle.getPropertyValue('--blue-400'), documentStyle.getPropertyValue('--yellow-400'), documentStyle.getPropertyValue('--green-400')]
}
]
};
};
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
}
};
},
mounted() {
this.chartData = this.setChartData();
2023-10-17 13:12:53 +00:00
this.chartOptions = this.setChartOptions();
this.themeChangeListener = () => {
this.chartOptions = this.setChartOptions();
};
EventBus.on('theme-change-complete', this.themeChangeListener);
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('--blue-500'), documentStyle.getPropertyValue('--yellow-500'), documentStyle.getPropertyValue('--green-500')],
hoverBackgroundColor: [documentStyle.getPropertyValue('--blue-400'), documentStyle.getPropertyValue('--yellow-400'), documentStyle.getPropertyValue('--green-400')]
}
]
};
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>