From 7c84faf45727994e3089742b49c3852aa176bc09 Mon Sep 17 00:00:00 2001 From: zx <604444282@qq.com> Date: Tue, 9 Nov 2021 17:37:37 +0800 Subject: [PATCH] =?UTF-8?q?zx-=E5=93=81=E7=89=8C=E5=AF=B9=E6=AF=94-?= =?UTF-8?q?=E8=87=B3=E5=BE=AE=E5=8D=9A=E5=86=85=E5=AE=B9=E6=96=B9=E5=90=91?= =?UTF-8?q?=E5=AF=B9=E6=AF=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/BrandComparison/BrandWeibo.js | 79 +++++ src/api/BrandComparison/HotEvent.js | 27 ++ src/api/BrandComparison/index.js | 44 ++- src/mixins/index.js | 1 - src/utils/gol/bubbleWord.js | 32 +- .../brandCommunicationTOPMedia/index.vue | 308 +++++----------- .../brandEventComparison/index.vue | 245 +++++++++---- .../brandEventComparison/opt.js | 93 ++--- .../channelDistribution/index.vue | 4 +- .../index.vue | 82 ++++- .../comparisonOfWeiboInformation/index.vue | 82 ++++- .../keyMediaCommunicationComparison/index.vue | 67 ++-- .../overallWordCloudComparison/index.vue | 155 +++++--- .../userAreaDistribution/index.vue | 113 ++++-- .../weiboBigVComparison/index.vue | 76 +++- .../weiboBigVComparison/opt.js | 186 +++++----- .../weiboContentDirectionComparison/index.vue | 332 ++++++------------ .../weiboTuneComparison/index.vue | 159 ++++++--- .../weiboTuneComparison/wbRoundata/index.vue | 14 +- .../weiboTuneComparison/wbRoundata/opt.js | 175 ++++----- 20 files changed, 1255 insertions(+), 1019 deletions(-) create mode 100644 src/api/BrandComparison/BrandWeibo.js create mode 100644 src/api/BrandComparison/HotEvent.js diff --git a/src/api/BrandComparison/BrandWeibo.js b/src/api/BrandComparison/BrandWeibo.js new file mode 100644 index 0000000..bb8a285 --- /dev/null +++ b/src/api/BrandComparison/BrandWeibo.js @@ -0,0 +1,79 @@ +import httpService from "@/request" + +// 品牌对比-微博信息量对比 +export function getContrastCount0528C(params) { + let obj = Object.assign({action: 'getContrastCount0528C', sType: 'BrandWeiBo', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-微博互动人数对比 +export function getInteractCount0528C(params) { + let obj = Object.assign({action: 'getInteractCount0528C', sType: 'BrandWeiBo', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-微博大V对比 +export function getBoauthen0528C(params) { + let obj = Object.assign({action: 'getBoauthen0528C', sType: 'BrandWeiBo', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-微博调性对比 +export function getAffectionsC(params) { + let obj = Object.assign({action: 'getAffectionsC', sType: 'BrandWeiBo', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-微博内容方向 +export function getDirect0528C(params) { + let obj = Object.assign({action: 'getDirect0528C', sType: 'BrandWeiBo', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-用户区域分布 +export function getRegionWeiBoC(params) { + let obj = Object.assign({action: 'getRegionWeiBoC', sType: 'BrandWeiBo', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} \ No newline at end of file diff --git a/src/api/BrandComparison/HotEvent.js b/src/api/BrandComparison/HotEvent.js new file mode 100644 index 0000000..3e6c629 --- /dev/null +++ b/src/api/BrandComparison/HotEvent.js @@ -0,0 +1,27 @@ +import httpService from "@/request" + +// 品牌对比-品牌事件对比 +export function getSourcetypeC(params) { + let obj = Object.assign({action: 'getSourcetypeC', sType: 'HotEvent0528', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-事件上榜车型 +export function getContrastCount0528C(params) { + let obj = Object.assign({action: 'getContrastCount0528C', sType: 'HotEvent0528', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} \ No newline at end of file diff --git a/src/api/BrandComparison/index.js b/src/api/BrandComparison/index.js index 4c5d601..26ece9a 100644 --- a/src/api/BrandComparison/index.js +++ b/src/api/BrandComparison/index.js @@ -54,7 +54,7 @@ export function getInteractCount0528C(params) { // 品牌对比-渠道分布 export function getSourcetypeC(params) { - let obj = Object.assign({action: 'getSourcetypeC', sType: 'BrandOverview', iContrastType: 1}, params) + let obj = Object.assign({action: 'getSourcetypeC', iContrastType: 1}, params) return httpService({ url: `/api/v6.ashx`, method: 'post', @@ -63,4 +63,44 @@ export function getSourcetypeC(params) { 'content-type': 'application/x-www-form-urlencoded' } }) -} \ No newline at end of file +} + +// 品牌对比-重点媒体传播对比 +export function getSourceCount0528C(params) { + let obj = Object.assign({action: 'getSourceCount0528C', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-品牌传播top媒体 +export function getSourceTopCount0528C(params) { + let obj = Object.assign({action: 'getSourceTopCount0528C', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-整体词云对比 +export function getPositiveAndNegative0528C(params) { + let obj = Object.assign({action: 'getPositiveAndNegative0528C', sType: 'BrandOverview', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + diff --git a/src/mixins/index.js b/src/mixins/index.js index c8d2f74..0542793 100644 --- a/src/mixins/index.js +++ b/src/mixins/index.js @@ -9,7 +9,6 @@ import { mapGetters, mapActions } from "vuex"; import Loading from './loading' function detectZoom (){ - console.log(2222) let ratio = 0, screen = window.screen, ua = navigator.userAgent.toLowerCase(); diff --git a/src/utils/gol/bubbleWord.js b/src/utils/gol/bubbleWord.js index b9a927f..4fa56fa 100644 --- a/src/utils/gol/bubbleWord.js +++ b/src/utils/gol/bubbleWord.js @@ -6,12 +6,12 @@ * @Description: In User Settings Edit * @FilePath: /data-show/src/utils/gol/bubbleWord.js */ -import {compare} from "./dataTool" - // 将后台数据转成数组 +import { compare } from "./dataTool" +// 将后台数据转成数组 function doWordCloud(data) { let arr1 = []; for (let key in data) { - let obj = { name: key, value: data[key] }; + let obj = { key: key, value: data[key] }; arr1.push(obj); } return arr1; @@ -93,12 +93,17 @@ function bubbleChart(data = [], format = []) { // 创建词云图 export default function createWordCloud(obj) { - let words = doWordCloud(obj); - words.sort(compare('value')); - let bubble = bubbleChart(words, ['name', 'value']); + let bubble = null; + if (Array.isArray(obj)) { + bubble = bubbleChart(obj, ['key', 'value']); + } else { + let words = doWordCloud(obj); + words.sort(compare('value')); + bubble = bubbleChart(words, ['key', 'value']); + } return { animationEasingUpdate: 'bounceIn', - tooltip: { + tooltip: { backgroundColor: "#08182F", color: "#fff", borderColor: "#3373CC", @@ -106,8 +111,9 @@ export default function createWordCloud(obj) { color: "#fff", //设置文字颜色 }, extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;", - formatter: function(param) { + formatter: function (param) { let data = param.data; + console.log(data) return `${data.name}
${data.value}` } }, @@ -115,13 +121,13 @@ export default function createWordCloud(obj) { type: 'graph', layout: 'force', label: { - show:true, - color:"#FFF", - fontSize:12, - + show: true, + color: "#FFF", + fontSize: 12, + }, force: { - gravity:0.2, + gravity: 0.2, repulsion: bubble.repulsion, edgeLength: 10 }, diff --git a/src/views/BrandComparison/brandCommunicationTOPMedia/index.vue b/src/views/BrandComparison/brandCommunicationTOPMedia/index.vue index 7b0710c..422d204 100644 --- a/src/views/BrandComparison/brandCommunicationTOPMedia/index.vue +++ b/src/views/BrandComparison/brandCommunicationTOPMedia/index.vue @@ -7,236 +7,108 @@ * @FilePath: /data-show/src/views/BrandComparison/brandCommunicationTOPMedia/index.vue --> diff --git a/src/views/BrandComparison/brandEventComparison/index.vue b/src/views/BrandComparison/brandEventComparison/index.vue index 3006677..4b5423b 100644 --- a/src/views/BrandComparison/brandEventComparison/index.vue +++ b/src/views/BrandComparison/brandEventComparison/index.vue @@ -7,96 +7,185 @@ * @FilePath: /data-show/src/views/BrandComparison/brandEventComparison/index.vue --> diff --git a/src/views/BrandComparison/brandEventComparison/opt.js b/src/views/BrandComparison/brandEventComparison/opt.js index 949390c..c743ed9 100644 --- a/src/views/BrandComparison/brandEventComparison/opt.js +++ b/src/views/BrandComparison/brandEventComparison/opt.js @@ -6,7 +6,38 @@ * @Description: In User Settings Edit * @FilePath: /data-show/src/views/BrandComparison/channelDistribution/opt.js */ -export default function createOpt() { + +/*series: [ + { + name: '奥迪', + type: 'bar', + barGap: 0, + barWidth: 20, + emphasis: { + focus: 'series' + }, + data: [320, 332, 301, 334, 390, 400] + },*/ +function createData(dataList = []) { + let arr = []; + dataList.forEach(ele => { + let o = { + name: ele.Name, + type: 'bar', + barGap: 0, + barWidth: 20, + emphasis: { + focus: 'series' + }, + data: [ele.Data.新闻,ele.Data.论坛,ele.Data.微信,ele.Data.APP,ele.Data.微博,ele.Data.其他] + }; + arr.push(o) + }) + return arr; +} + +export default function createOpt(dataList = [], brandList = []) { + let info = createData(dataList); return { grid: { top: "56px", @@ -16,7 +47,7 @@ export default function createOpt() { containLabel: true, }, legend: { - data: ['奥迪', '宝马', '奔驰', '吉利', '大众', '别克'], + data: brandList, textStyle: { //图例文字的样式 color: '#fff' }, @@ -65,62 +96,6 @@ export default function createOpt() { }, } ], - series: [ - { - name: '奥迪', - type: 'bar', - barGap: 0, - barWidth: 20, - emphasis: { - focus: 'series' - }, - data: [320, 332, 301, 334, 390, 400] - }, - { - name: '宝马', - type: 'bar', - barWidth: 20, - emphasis: { - focus: 'series' - }, - data: [220, 182, 191, 234, 290, 300] - }, - { - name: '奔驰', - type: 'bar', - barWidth: 20, - emphasis: { - focus: 'series' - }, - data: [150, 232, 201, 154, 190, 200] - }, - { - name: '吉利', - type: 'bar', - barWidth: 20, - emphasis: { - focus: 'series' - }, - data: [98, 77, 101, 99, 40, 44] - }, - { - name: '大众', - type: 'bar', - barWidth: 20, - emphasis: { - focus: 'series' - }, - data: [198, 177, 101, 199, 140, 145] - }, - { - name: '别克', - type: 'bar', - barWidth: 20, - emphasis: { - focus: 'series' - }, - data: [298, 277, 201, 299, 240, 250] - } - ] + series: info } } \ No newline at end of file diff --git a/src/views/BrandComparison/channelDistribution/index.vue b/src/views/BrandComparison/channelDistribution/index.vue index d058c53..420281c 100644 --- a/src/views/BrandComparison/channelDistribution/index.vue +++ b/src/views/BrandComparison/channelDistribution/index.vue @@ -16,7 +16,7 @@ diff --git a/src/views/BrandComparison/comparisonOfWeiboInformation/index.vue b/src/views/BrandComparison/comparisonOfWeiboInformation/index.vue index 81b5813..6c56a71 100644 --- a/src/views/BrandComparison/comparisonOfWeiboInformation/index.vue +++ b/src/views/BrandComparison/comparisonOfWeiboInformation/index.vue @@ -7,33 +7,77 @@ * @FilePath: /data-show/src/views/BrandComparison/comparisonOfWeiboInformation/index.vue --> diff --git a/src/views/BrandComparison/keyMediaCommunicationComparison/index.vue b/src/views/BrandComparison/keyMediaCommunicationComparison/index.vue index 94db68f..426e390 100644 --- a/src/views/BrandComparison/keyMediaCommunicationComparison/index.vue +++ b/src/views/BrandComparison/keyMediaCommunicationComparison/index.vue @@ -7,36 +7,61 @@ * @FilePath: /data-show/src/views/BrandComparison/keyMediaCommunicationComparison/index.vue --> diff --git a/src/views/BrandComparison/overallWordCloudComparison/index.vue b/src/views/BrandComparison/overallWordCloudComparison/index.vue index d96ff8f..e843743 100644 --- a/src/views/BrandComparison/overallWordCloudComparison/index.vue +++ b/src/views/BrandComparison/overallWordCloudComparison/index.vue @@ -7,75 +7,124 @@ * @FilePath: /data-show/src/views/BrandComparison/overallWordCloudComparison/index.vue --> diff --git a/src/views/BrandComparison/userAreaDistribution/index.vue b/src/views/BrandComparison/userAreaDistribution/index.vue index 6e7256c..a5c7ca1 100644 --- a/src/views/BrandComparison/userAreaDistribution/index.vue +++ b/src/views/BrandComparison/userAreaDistribution/index.vue @@ -7,53 +7,92 @@ * @FilePath: /data-show/src/views/WeiboDetails/weiboUserActiveArea/index.vue --> diff --git a/src/views/BrandComparison/weiboBigVComparison/index.vue b/src/views/BrandComparison/weiboBigVComparison/index.vue index 139ed2f..f16b1f6 100644 --- a/src/views/BrandComparison/weiboBigVComparison/index.vue +++ b/src/views/BrandComparison/weiboBigVComparison/index.vue @@ -7,32 +7,70 @@ * @FilePath: /data-show/src/views/BrandComparison/weiboBigVComparison/index.vue --> diff --git a/src/views/BrandComparison/weiboBigVComparison/opt.js b/src/views/BrandComparison/weiboBigVComparison/opt.js index aa29fd1..73914a7 100644 --- a/src/views/BrandComparison/weiboBigVComparison/opt.js +++ b/src/views/BrandComparison/weiboBigVComparison/opt.js @@ -6,61 +6,8 @@ * @Description: In User Settings Edit * @FilePath: /data-show/src/views/Index/spreadTheSound/opt.js */ -export default function createOpt() { - return { - grid: { - left: 16, - right: 16, - bottom: 16, - top: 56, - containLabel: true - }, - tooltip: { - trigger: "axis", - backgroundColor: "#08182F", - color: "#fff", - borderColor: "#3373CC", - textStyle: { - color: "#fff", //设置文字颜色 - }, - extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;" - }, - legend: { - textStyle: { //图例文字的样式 - color: '#fff' - }, - y: 10, - x: 16 - }, - xAxis: { - type: 'category', - axisTick: { - show: false, - }, - axisLine: { - show: false, - lineStyle: { - color: "#fff", - }, - }, - data: ['名人', '媒体', '企业', '政府', '个人大v'] - }, - yAxis: { - type: 'value', - axisLine: { - show: false, - lineStyle: { - color: "#fff", - }, - }, - splitLine: { - lineStyle: { - type: "dashed", // y轴分割线类型 - color: "#012b4b", - }, - }, - }, - series: [ +/* +series: [ { name: '奥迪', type: 'bar', @@ -71,57 +18,82 @@ export default function createOpt() { }, data: [320, 302, 301, 334, 390] }, - { - name: '宝马', - type: 'bar', - stack: 'total', - barWidth: 24, - emphasis: { - focus: 'series' - }, - data: [120, 132, 101, 134, 90] - }, - { - name: '奔驰', - type: 'bar', - stack: 'total', - barWidth: 24, - emphasis: { - focus: 'series' - }, - data: [220, 182, 191, 234, 290] - }, - { - name: '吉利', - type: 'bar', - stack: 'total', - barWidth: 24, - emphasis: { - focus: 'series' - }, - data: [150, 212, 201, 154, 190] - }, - { - name: '大众', - type: 'bar', - stack: 'total', - barWidth: 24, - emphasis: { - focus: 'series' - }, - data: [820, 832, 901, 934, 1290] - }, - { - name: '别克', - type: 'bar', - stack: 'total', - barWidth: 24, - emphasis: { - focus: 'series' - }, - data: [820, 832, 901, 934, 1290] - } - ] - } +*/ +function createData(dataList = []) { + let arr = []; + dataList.forEach(ele => { + let o = { + name: ele.key, + type: 'bar', + stack: 'total', + barWidth: 24, + emphasis: { + focus: 'series' + }, + //索引各类型大v的值,0表示名人,1表示政府,2表示企业,3表示媒体,4表示个人大V + data: [ele.value[0].value, ele.value[3].value, ele.value[2].value, ele.value[1].value, ele.value[4].value] + }; + arr.push(o); + }) + return arr; +} + +export default function createOpt(dataList = []) { + let info = createData(dataList); + return { + grid: { + left: 16, + right: 16, + bottom: 16, + top: 56, + containLabel: true + }, + tooltip: { + trigger: "axis", + backgroundColor: "#08182F", + color: "#fff", + borderColor: "#3373CC", + textStyle: { + color: "#fff", //设置文字颜色 + }, + extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;" + }, + legend: { + textStyle: { //图例文字的样式 + color: '#fff' + }, + y: 10, + x: 16 + }, + xAxis: { + type: 'category', + axisTick: { + show: false, + }, + axisLine: { + show: false, + lineStyle: { + color: "#fff", + }, + }, + data: ['名人', '媒体', '企业', '政府', '个人大v'] + }, + yAxis: { + type: 'value', + axisLine: { + show: false, + lineStyle: { + color: "#fff", + }, + }, + splitLine: { + lineStyle: { + type: "dashed", // y轴分割线类型 + color: "#012b4b", + }, + }, + }, + series: info + } } \ No newline at end of file diff --git a/src/views/BrandComparison/weiboContentDirectionComparison/index.vue b/src/views/BrandComparison/weiboContentDirectionComparison/index.vue index d08894e..e1cca02 100644 --- a/src/views/BrandComparison/weiboContentDirectionComparison/index.vue +++ b/src/views/BrandComparison/weiboContentDirectionComparison/index.vue @@ -7,235 +7,131 @@ * @FilePath: /data-show/src/views/BrandComparison/brandCommunicationTOPMedia/index.vue --> diff --git a/src/views/BrandComparison/weiboTuneComparison/index.vue b/src/views/BrandComparison/weiboTuneComparison/index.vue index 23a2b69..0b8bb95 100644 --- a/src/views/BrandComparison/weiboTuneComparison/index.vue +++ b/src/views/BrandComparison/weiboTuneComparison/index.vue @@ -7,70 +7,125 @@ * @FilePath: /data-show/src/views/BrandComparison/weiboTuneComparison/index.vue --> diff --git a/src/views/BrandComparison/weiboTuneComparison/wbRoundata/index.vue b/src/views/BrandComparison/weiboTuneComparison/wbRoundata/index.vue index 0baf57d..da4459e 100644 --- a/src/views/BrandComparison/weiboTuneComparison/wbRoundata/index.vue +++ b/src/views/BrandComparison/weiboTuneComparison/wbRoundata/index.vue @@ -27,10 +27,22 @@ export default { type: String, default: "", }, + data: { + type: Object, + default: () => {} + } + }, + watch: { + data: { + handler(val) { + this.opt = createOpt(val) + }, + immediate: true + } }, data() { return { - opt: createOpt(), + //opt: createOpt(), }; }, methods: { diff --git a/src/views/BrandComparison/weiboTuneComparison/wbRoundata/opt.js b/src/views/BrandComparison/weiboTuneComparison/wbRoundata/opt.js index 72c0191..9006c30 100644 --- a/src/views/BrandComparison/weiboTuneComparison/wbRoundata/opt.js +++ b/src/views/BrandComparison/weiboTuneComparison/wbRoundata/opt.js @@ -7,109 +7,84 @@ * @FilePath: /data-show/src/views/BrandInsight/weiboKol/opt.js */ import * as echarts from "echarts"; -export default function createOpt() { - return { - series: [ - { - name: 'Access From0', - type: 'pie', - radius: ['70%', '92%'], - avoidLabelOverlap: false, - label: { - show: false, - position: 'center', - lineHeight: 40 - }, - emphasis: { - label: { +function createData(obj = {}) { + if (JSON.stringify(obj) === '{}') { + return; + } + let arr = []; + for (let key in obj) { + let color = ""; + if (key === '正面') { + color = "#3373CC" + } else if (key === '负面') { + color = "#b38b14" + } else { + color = "#54BF93" + } + let o = { + value: obj[key], + name: key, + itemStyle: { + color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ + //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 + //给第一个设置0,第四个设置1,就是垂直渐变 + offset: 0, + color: 'black' + }, { + offset: 1, + color: color + }]) + } + } + arr.push(o) + } + return arr +} +export default function createOpt(obj={}) { + let data = createData(obj); + return { + series: [ + { + name: 'Access From0', + type: 'pie', + radius: ['70%', '92%'], + avoidLabelOverlap: false, + label: { + show: false, + position: 'center', + lineHeight: 28 + }, + emphasis: { + label: { show: true, - fontSize: '20', + fontSize: '18', color: "#ffff", fontWeight: 'bold', - formatter: function(p) { - return `${p.data.name}\n25%\n${p.data.value}` + formatter: function (p) { + return `${p.data.name}\n${p.percent}%\n${p.data.value}` } - } - }, - labelLine: { - show: false - }, - data: [ - { value: 2000, name: '正面', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#3373CC' - }])} }, - - { value: 1000, name: '中性', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#54BF93' - }])} }, - { value: 1000, name: '负面', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#b38b14' - }])} }, - ], + } + }, + labelLine: { + show: false + }, + data: data + }, + { + name: 'Access From1', + type: 'pie', + radius: ['96%', '100%'], + avoidLabelOverlap: false, + label: { + show: false, + position: 'center' + }, + labelLine: { + show: false }, - { - name: 'Access From1', - type: 'pie', - radius: ['96%', '100%'], - avoidLabelOverlap: false, - label: { - show: false, - position: 'center' - }, - labelLine: { - show: false - }, - center: ['50%', '50%'],//边框位置 - data: [ - { value: 2000, name: '正面', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#3373CC' - }])} }, - - { value: 1000, name: '中性', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#54BF93' - }])} }, - { value: 1000, name: '负面', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#b38b14' - }])} }, - - ], - } - ] - } + center: ['50%', '50%'],//边框位置 + data: data + } + ] + } }