123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285 |
- <template>
- <div class="chart" :id="id"></div>
- </template>
- <script>
- import util from "@/helper/util.js";
- import partten from "@/helper/partten.js";
- import * as echarts from "echarts";
- export default {
- name: "radar-pie",
- componentName: "radar-pie",
- props: {
- width: {
- type: String,
- default: "100%",
- },
- height: {
- type: String,
- default: "18.519vh",
- },
-
-
- list: {
- type: Array,
- default: () => [{
- value: 310,
- name: "邮件营销",
- },
- {
- value: 234,
- name: "联盟广告",
- },
- {
- value: 335,
- name: "视频广告",
- },
- {
- value: 548,
- name: "百度",
- },
- {
- value: 351,
- name: "谷歌",
- },
- ],
- },
- title: {
- type: String,
- default: "title",
- },
- },
- data() {
- return {
- id: "",
- chart: null,
- };
- },
- computed: {},
- methods: {
- initChart() {
- let option = {
- color: [
- "#3e73e9",
- "#4fa6e8",
- "#70d0f4",
- "#ffc149",
- "#ff7a87",
- "#70d0f4",
- "#cff4d8",
- ],
- tooltip: {
- trigger: "item",
- backgroundColor: this.$store.state.themeName === "dark" ?
- "rgba(0,0,0,0.4)" :
- "rgba(255,255,255,0.4)",
- borderColor: this.$store.state.themeName === "dark" ?
- partten.getColor("gray") :
- "#000",
- textStyle: {
- color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
- fontSize: util.vh(16),
- },
- },
- grid: {
- top: 8,
- left: 8,
- right: 8,
- bottom: 8,
- containLabel: true,
- },
- legend: {
- icon: "circle",
- orient: "vertical",
- top: "center",
- right: "0",
- align: "left",
- textStyle: {
- color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
- },
- itemGap: 8,
- },
- radar: {
- center: ["25%", "50%"],
- radius: "80%",
- startAngle: 90,
- splitNumber: 8,
- shape: "circle",
- splitArea: {
- areaStyle: {
- color: ["transparent"],
- },
- },
- axisLabel: {
- show: false,
- fontSize: 18,
- color: this.$store.state.themeName === "dark" ? "#fff" : "#000",
- fontStyle: "normal",
- fontWeight: "normal",
- },
- axisLine: {
- show: true,
- lineStyle: {
- color: "#606769",
- },
- },
- splitLine: {
- show: true,
- lineStyle: {
- color: "#606769",
- },
- },
- indicator: [{
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- {
- name: "",
- max: 100,
- },
- ],
- },
- series: [{
- name: this.title,
- type: "pie",
- clockwise: false,
- startAngle: 90,
- radius: "70%",
- center: ["25%", "50%"],
- hoverAnimation: false,
- roseType: "radius",
- data: this.list,
- label: {
- show: false,
- },
- labelLine: {
- normal: {
- length: 20,
- length2: 30,
- lineStyle: {
- width: 1,
- },
- },
- },
- }, ],
- };
- this.chart.setOption(option);
- },
- },
- created() {
- this.id = "pie-chart-" + util.newGUID();
- },
- mounted() {
- this.$el.style.width = this.width;
- this.$el.style.height = this.height;
- this.chart = echarts.init(this.$el);
- this.initChart();
- },
- updated() {
- this.initChart();
- },
- watch: {
- "$store.state.themeName"() {
- this.initChart();
- },
- },
- };
- </script>
- <style lang="less">
- .chart {
- width: 100%;
- height: 100%;
- display: inline-block;
- }
- </style>
|