1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
| <template>
| <div class="card content-box">
| <ECharts :option="option" />
| </div>
| </template>
|
| <script setup lang="ts" name="radarChart">
| import { ECOption } from "@/components/ECharts/config";
| import ECharts from "@/components/ECharts/index.vue";
|
| const option: ECOption = {
| title: {
| text: "Basic Radar Chart",
| textStyle: {
| color: "#a1a1a1"
| }
| },
| legend: {
| data: ["Allocated Budget", "Actual Spending"],
| textStyle: {
| color: "#a1a1a1"
| }
| },
| radar: {
| // shape: 'circle',
| indicator: [
| { name: "Sales", max: 6500 },
| { name: "Administration", max: 16000 },
| { name: "Information Technology", max: 30000 },
| { name: "Customer Support", max: 38000 },
| { name: "Development", max: 52000 },
| { name: "Marketing", max: 25000 }
| ]
| },
| series: [
| {
| name: "Budget vs spending",
| type: "radar",
| data: [
| {
| value: [4200, 3000, 20000, 35000, 50000, 18000],
| name: "Allocated Budget"
| },
| {
| value: [5000, 14000, 28000, 26000, 42000, 21000],
| name: "Actual Spending"
| }
| ]
| }
| ]
| };
| </script>
|
| <style scoped lang="scss">
| @import "./index.scss";
| </style>
|
|