123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387 |
- <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: "dsah-pie",
- componentName: "dsah-pie",
- props: {
- // 宽度 默认9.722vh
- width: {
- type: String,
- default: "100%",
- },
- // 高度 默认9.722vh
- height: {
- type: String,
- default: "7.4074vh",
- },
- // 标题
- title: {
- type: String,
- default: "标题",
- },
- // 值
- value: {
- type: Number,
- default: 90,
- },
- },
- data() {
- return {
- id: "",
- chart: null,
- 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,
- },
- ],
- };
- },
- computed: {},
- methods: {
- initChart() {
- let option = {
- grid: {
- left: 40,
- right: 40,
- bottom: "40%",
- top: "40%",
- containLabel: false,
- },
- radar: [
- // 最低层 80
- {
- radius: "70%",
- center: ["50%", "50%"],
- splitNumber: 1,
- nameGap: "10",
- name: {
- textStyle: {
- color: partten.getColor("gray") + 99,
- fontSize: 12,
- },
- },
- axisLine: {
- lineStyle: {
- color: partten.getColor("gray") + 40,
- },
- },
- splitLine: {
- lineStyle: {
- width: 1,
- color: partten.getColor("gray") + 40,
- },
- },
- splitArea: {
- areaStyle: {
- color: "transparent",
- },
- },
- indicator: this.indicator,
- },
- // 次外层 70 - 80
- {
- radius: ["60%", "70%"],
- center: ["50%", "50%"],
- startAngle: 90,
- splitNumber: 2,
- name: {
- show: false,
- },
- axisLine: {
- lineStyle: {
- color: partten.getColor("gray") + 40,
- shadowBlur: 1,
- shadowColor: "#fff",
- shadowOffsetX: 0.5,
- shadowOffsetY: 1,
- },
- },
- splitLine: {
- lineStyle: {
- width: 1,
- color: partten.getColor("gray") + 40,
- shadowColor: "#fff",
- shadowBlur: 0,
- shadowOffsetX: 0.5,
- shadowOffsetY: 0.5,
- },
- },
- splitArea: {
- areaStyle: {
- color: "transparent",
- },
- },
- indicator: this.indicator,
- },
- // 渐变层 40 - 70
- {
- radius: ["30%", "60%"],
- center: ["50%", "50%"],
- splitNumber: 1,
- name: {
- show: false,
- },
- axisLine: {
- lineStyle: {
- color: partten.getColor("gray") + 40,
- },
- },
- splitLine: {
- lineStyle: {
- width: 1,
- color: partten.getColor("gray"),
- },
- },
- splitArea: {
- areaStyle: {
- shadowBlur: 4,
- color: {
- type: "radial",
- x: 0.5,
- y: 0.5,
- r: 0.5,
- colorStops: [
- {
- offset: 0.5,
- color: "transparent", // 0% 处的颜色
- },
- {
- offset: 1,
- color: this.$store.state.themeName === "dark" ? partten.getColor("green") : partten.getColor("deepblue") + 60, // 100% 处的颜色
- },
- ],
- global: false, // 缺省为 false
- },
- },
- },
- indicator: this.indicator,
- },
- // 内层 0 - 40
- {
- radius: "30%",
- center: ["50%", "50%"],
- splitNumber: 1,
- name: {
- show: false,
- },
- axisLine: {
- lineStyle: {
- color: partten.getColor("gray") + 40,
- },
- },
- splitLine: {
- lineStyle: {
- width: 1,
- color: partten.getColor("gray"),
- },
- },
- splitArea: {
- areaStyle: {
- shadowBlur: 4,
- color: "transparent",
- },
- },
- indicator: this.indicator,
- },
- ],
- series: [
- // 进度条
- {
- z: 1,
- name: "内部(环形)进度条",
- type: "gauge",
- radius: "70%",
- splitNumber: 5,
- axisLine: {
- lineStyle: {
- color: [
- [
- this.value / 360,
- new echarts.graphic.LinearGradient(0, 0, 1, 0, [
- {
- offset: 0,
- color: this.$store.state.themeName === "dark" ? partten.getColor(this.color) + 10 : partten.getColor("deepblue") + 10,
- },
- {
- offset: 1,
- color: this.$store.state.themeName === "dark" ? partten.getColor(this.color) + 99 : partten.getColor("deepblue") + 99,
- },
- ]),
- ],
- [1, "transparent"],
- ],
- width: 40,
- },
- },
- startAngle: 90,
- endAngle: 450,
- clockwise: true,
- axisLabel: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- splitLine: {
- show: false,
- },
- pointer: {
- show: false,
- },
- },
- // 指针
- {
- name: "指针",
- type: "gauge",
- z: 2,
- min: 0,
- max: 360,
- radius: "100%",
- startAngle: 90,
- endAngle: 360 + 90,
- clockwise: false,
- axisLine: {
- show: false,
- },
- tooltip: {
- show: false,
- },
- axisLabel: {
- show: false,
- },
- axisTick: {
- show: false,
- },
- splitLine: {
- show: false,
- },
- detail: {
- show: false,
- },
- title: {
- //标题
- show: false,
- },
- data: [
- {
- value: this.value,
- },
- ],
- itemStyle: {
- normal: {
- color: "#fff",
- },
- },
- pointer: {
- show: true,
- length: "70%",
- radius: "0%",
- width: util.vh(3), //指针粗细
- offsetCenter: ["0%", "0%"],
- },
- animationDuration: 1000,
- },
- ],
- };
- this.chart.setOption(option);
- },
- },
- created() {
- this.id = "pie-chart-" + util.newGUID();
- },
- mounted() {
- this.$nextTick(() => {
- 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" scoped>
- .chart {
- width: 100%;
- height: 100%;
- display: block;
- margin: auto;
- }
- </style>
|