2023-02-28 08:29:30 +00:00
|
|
|
<template>
|
|
|
|
<DocSectionText v-bind="$attrs">
|
|
|
|
<p>A radar chart is a graphical method of displaying multivariate data in the form of a two-dimensional chart of three or more quantitative variables represented on axes starting from the same point.</p>
|
|
|
|
</DocSectionText>
|
|
|
|
<div class="card flex justify-content-center">
|
|
|
|
<Chart type="radar" :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,
|
|
|
|
chartOptions: null,
|
|
|
|
code: {
|
2023-09-22 12:54:14 +00:00
|
|
|
basic: `
|
2023-10-15 09:38:39 +00:00
|
|
|
<Chart type="radar" :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="radar" :data="chartData" :options="chartOptions" class="w-full md:w-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);
|
|
|
|
const textColor = documentStyle.getPropertyValue('--text-color');
|
|
|
|
|
|
|
|
return {
|
|
|
|
labels: ['Eating', 'Drinking', 'Sleeping', 'Designing', 'Coding', 'Cycling', 'Running'],
|
|
|
|
datasets: [
|
|
|
|
{
|
|
|
|
label: 'My First dataset',
|
|
|
|
borderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointBackgroundColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointBorderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointHoverBackgroundColor: textColor,
|
|
|
|
pointHoverBorderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
data: [65, 59, 90, 81, 56, 55, 40]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'My Second dataset',
|
|
|
|
borderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointBackgroundColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointBorderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointHoverBackgroundColor: textColor,
|
|
|
|
pointHoverBorderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
data: [28, 48, 40, 19, 96, 27, 100]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
setChartOptions() {
|
|
|
|
const documentStyle = getComputedStyle(document.documentElement);
|
|
|
|
const textColor = documentStyle.getPropertyValue('--text-color');
|
|
|
|
const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary');
|
|
|
|
|
|
|
|
return {
|
|
|
|
plugins: {
|
|
|
|
legend: {
|
|
|
|
labels: {
|
|
|
|
color: textColor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
r: {
|
|
|
|
grid: {
|
|
|
|
color: textColorSecondary
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
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="radar" :data="chartData" :options="chartOptions" class="w-full md:w-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);
|
|
|
|
const textColor = documentStyle.getPropertyValue('--text-color');
|
|
|
|
|
|
|
|
return {
|
|
|
|
labels: ['Eating', 'Drinking', 'Sleeping', 'Designing', 'Coding', 'Cycling', 'Running'],
|
|
|
|
datasets: [
|
|
|
|
{
|
|
|
|
label: 'My First dataset',
|
|
|
|
borderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointBackgroundColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointBorderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointHoverBackgroundColor: textColor,
|
|
|
|
pointHoverBorderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
data: [65, 59, 90, 81, 56, 55, 40]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'My Second dataset',
|
|
|
|
borderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointBackgroundColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointBorderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointHoverBackgroundColor: textColor,
|
|
|
|
pointHoverBorderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
data: [28, 48, 40, 19, 96, 27, 100]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
};
|
|
|
|
const setChartOptions = () => {
|
|
|
|
const documentStyle = getComputedStyle(document.documentElement);
|
|
|
|
const textColor = documentStyle.getPropertyValue('--text-color');
|
|
|
|
const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary');
|
|
|
|
|
|
|
|
return {
|
|
|
|
plugins: {
|
|
|
|
legend: {
|
|
|
|
labels: {
|
|
|
|
color: textColor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
r: {
|
|
|
|
grid: {
|
|
|
|
color: textColorSecondary
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
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);
|
|
|
|
const textColor = documentStyle.getPropertyValue('--text-color');
|
|
|
|
|
|
|
|
return {
|
|
|
|
labels: ['Eating', 'Drinking', 'Sleeping', 'Designing', 'Coding', 'Cycling', 'Running'],
|
|
|
|
datasets: [
|
|
|
|
{
|
|
|
|
label: 'My First dataset',
|
|
|
|
borderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointBackgroundColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointBorderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
pointHoverBackgroundColor: textColor,
|
|
|
|
pointHoverBorderColor: documentStyle.getPropertyValue('--bluegray-400'),
|
|
|
|
data: [65, 59, 90, 81, 56, 55, 40]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: 'My Second dataset',
|
|
|
|
borderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointBackgroundColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointBorderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
pointHoverBackgroundColor: textColor,
|
|
|
|
pointHoverBorderColor: documentStyle.getPropertyValue('--pink-400'),
|
|
|
|
data: [28, 48, 40, 19, 96, 27, 100]
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
},
|
|
|
|
setChartOptions() {
|
|
|
|
const documentStyle = getComputedStyle(document.documentElement);
|
|
|
|
const textColor = documentStyle.getPropertyValue('--text-color');
|
|
|
|
const textColorSecondary = documentStyle.getPropertyValue('--text-color-secondary');
|
|
|
|
|
|
|
|
return {
|
|
|
|
plugins: {
|
|
|
|
legend: {
|
|
|
|
labels: {
|
|
|
|
color: textColor
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
scales: {
|
|
|
|
r: {
|
|
|
|
grid: {
|
|
|
|
color: textColorSecondary
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|