diff --git a/src/api/BrandComparison/BbsBrand.js b/src/api/BrandComparison/BbsBrand.js new file mode 100644 index 0000000..d8d9d12 --- /dev/null +++ b/src/api/BrandComparison/BbsBrand.js @@ -0,0 +1,53 @@ +import httpService from "@/request" + +// 品牌对比-论坛信息概括对比 +export function getCount0528C(params) { + let obj = Object.assign({action: 'getCount0528C', sType: 'BbsBrand', iContrastType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-论坛发帖趋势对比 +export function getCountTime0528C(params) { + let obj = Object.assign({action: 'getCountTime0528C', sType: 'BbsBrand', 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: 'BbsBrand', iContrastType: 1, iBBsType: 1}, params) + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-论坛正面/负面话题对比 +export function getTopicPosAndTopicNeg0528C(params) { + let obj = Object.assign({action: 'getTopicPosAndTopicNeg0528C', sType: 'BbsBrand', iContrastType: 1, iBBsType: 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/BrandWeibo.js b/src/api/BrandComparison/BrandWeibo.js index bb8a285..59ba6c1 100644 --- a/src/api/BrandComparison/BrandWeibo.js +++ b/src/api/BrandComparison/BrandWeibo.js @@ -68,7 +68,20 @@ export function getDirect0528C(params) { // 品牌对比-用户区域分布 export function getRegionWeiBoC(params) { let obj = Object.assign({action: 'getRegionWeiBoC', sType: 'BrandWeiBo', iContrastType: 1}, params) - return httpService({ + return httpService({ + url: `/api/v6.ashx`, + method: 'post', + data: obj, + headers: { + 'content-type': 'application/x-www-form-urlencoded' + } + }) +} + +// 品牌对比-微博用户画像 +export function getSexMergeWeiBoC(params) { + let obj = Object.assign({action: 'getSexMergeWeiBoC', sType: 'BrandWeiBo', iContrastType: 1}, params) + return httpService({ url: `/api/v6.ashx`, method: 'post', data: obj, diff --git a/src/views/BrandComparison/comparisonOfForumPostingTrends/index.vue b/src/views/BrandComparison/comparisonOfForumPostingTrends/index.vue index a7bc716..d26cd91 100644 --- a/src/views/BrandComparison/comparisonOfForumPostingTrends/index.vue +++ b/src/views/BrandComparison/comparisonOfForumPostingTrends/index.vue @@ -7,33 +7,73 @@ * @FilePath: /data-show/src/views/BrandComparison/comparisonOfForumPostingTrends/index.vue --> diff --git a/src/views/BrandComparison/comparisonOfForumPostingTrends/opt.js b/src/views/BrandComparison/comparisonOfForumPostingTrends/opt.js index 346d8e9..bca6707 100644 --- a/src/views/BrandComparison/comparisonOfForumPostingTrends/opt.js +++ b/src/views/BrandComparison/comparisonOfForumPostingTrends/opt.js @@ -6,7 +6,38 @@ * @Description: In User Settings Edit * @FilePath: /data-show/src/views/BrandInsight/titsopo/opt.js */ -export default function createOpt() { +import { bigNumberTransform } from "@/utils/gol/dataTool" +function createData(ds = []) { + let testData = {} + ds.forEach(item => { + item.forEach(val => { + if (testData[val.key] === undefined) { + testData[val.key] = { + name: val.key, + type: 'line', + symbol: 'none', + areaStyle: { + opacity: 0.4 + }, + emphasis: { + focus: 'series' + }, + data: [val.value] + } + } else { + testData[val.key].data.push(val.value) + } + }) + }) + let arr = []; + for(let key in testData) { + arr.push(testData[key]) + } + return arr +} + +export default function createOpt(dx = [], ds = []) { + let data = createData(ds); return { grid: { left: 16, @@ -39,13 +70,19 @@ export default function createOpt() { axisTick: { show: false, }, + axisLabel: { + formatter: (value) => { + let str = value.substring(10, 16) + return str; + } + }, axisLine: { show: false, lineStyle: { color: "#fff", }, }, - data: ['00:00', '04:00', '08:00', '12:00', '16:00', '20:00', '24:00'] + data: dx }, yAxis: { type: 'value', @@ -55,6 +92,12 @@ export default function createOpt() { color: "#fff", }, }, + axisLabel: { + formatter: (value) => { + let str = bigNumberTransform(value); + return str; + } + }, splitLine: { lineStyle: { type: "dashed", // y轴分割线类型 @@ -62,86 +105,6 @@ export default function createOpt() { }, }, }, - series: [ - { - name: '奥迪', - type: 'line', - stack: 'Total', - symbol: 'none', - areaStyle: { - opacity: 0.4 - }, - emphasis: { - focus: 'series' - }, - data: [2000, 1600, 1000, 2200, 2300, 2100, 1900] - }, - { - name: '宝马', - type: 'line', - stack: 'Total', - symbol: 'none', - areaStyle: { - opacity: 0.4 - }, - emphasis: { - focus: 'series' - }, - data: [1000, 1100, 1300, 2000, 1800, 2100, 1600] - }, - { - name: '奔驰', - type: 'line', - stack: 'Total', - symbol: 'none', - areaStyle: { - opacity: 0.4 - }, - emphasis: { - focus: 'series' - }, - data: [1200, 1200, 1400, 2100, 1400, 1900, 2000] - }, - { - name: '吉利', - type: 'line', - stack: 'Total', - symbol: 'none', - areaStyle: { - opacity: 0.4 - }, - emphasis: { - focus: 'series' - }, - data: [1200, 1200, 1350, 1550, 1750, 1900, 2000] - }, - { - name: '大众', - type: 'line', - stack: 'Total', - symbol: 'none', - areaStyle: { - opacity: 0.4 - }, - emphasis: { - focus: 'series' - }, - data: [1260, 1280, 1390, 1570, 1790, 1950, 2020] - }, - { - name: '别克', - type: 'line', - stack: 'Total', - symbol: 'none', - areaStyle: { - opacity: 0.4 - }, - emphasis: { - focus: 'series' - }, - data: [1260, 1280, 1390, 1570, 1790, 1950, 2020] - }, - - ] + series: data } } diff --git a/src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue b/src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue index 5d59340..3609109 100644 --- a/src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue +++ b/src/views/BrandComparison/comparisonOfNegativeTopicsInForums/index.vue @@ -7,82 +7,169 @@ * @FilePath: /data-show/src/views/BrandComparison/comparisonOfPositiveTopicsInTheForum/index.vue --> diff --git a/src/views/BrandComparison/comparisonOfPositiveTopicsInTheForum/index.vue b/src/views/BrandComparison/comparisonOfPositiveTopicsInTheForum/index.vue index 9fbbcd4..c7638b9 100644 --- a/src/views/BrandComparison/comparisonOfPositiveTopicsInTheForum/index.vue +++ b/src/views/BrandComparison/comparisonOfPositiveTopicsInTheForum/index.vue @@ -7,82 +7,119 @@ * @FilePath: /data-show/src/views/BrandComparison/comparisonOfPositiveTopicsInTheForum/index.vue --> diff --git a/src/views/BrandComparison/forumTonalComparison/index.vue b/src/views/BrandComparison/forumTonalComparison/index.vue index 2a67133..a1ddb5e 100644 --- a/src/views/BrandComparison/forumTonalComparison/index.vue +++ b/src/views/BrandComparison/forumTonalComparison/index.vue @@ -7,70 +7,131 @@ * @FilePath: /data-show/src/views/BrandComparison/weiboTuneComparison/index.vue --> diff --git a/src/views/BrandComparison/forumTonalComparison/roundata/index.vue b/src/views/BrandComparison/forumTonalComparison/roundata/index.vue index eb00a88..6582462 100644 --- a/src/views/BrandComparison/forumTonalComparison/roundata/index.vue +++ b/src/views/BrandComparison/forumTonalComparison/roundata/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/forumTonalComparison/roundata/opt.js b/src/views/BrandComparison/forumTonalComparison/roundata/opt.js index 72c0191..9608152 100644 --- a/src/views/BrandComparison/forumTonalComparison/roundata/opt.js +++ b/src/views/BrandComparison/forumTonalComparison/roundata/opt.js @@ -7,7 +7,42 @@ * @FilePath: /data-show/src/views/BrandInsight/weiboKol/opt.js */ import * as echarts from "echarts"; -export default function createOpt() { +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: [ { @@ -18,52 +53,23 @@ export default function createOpt() { label: { show: false, position: 'center', - lineHeight: 40 + 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}` + 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' - }])} }, - ], + data: data, }, { name: 'Access From1', @@ -78,37 +84,7 @@ export default function createOpt() { 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' - }])} }, - - ], + data: data, } ] } diff --git a/src/views/BrandComparison/summaryAndComparisonOfForumInformation/index.vue b/src/views/BrandComparison/summaryAndComparisonOfForumInformation/index.vue index e39cdb7..8e81e78 100644 --- a/src/views/BrandComparison/summaryAndComparisonOfForumInformation/index.vue +++ b/src/views/BrandComparison/summaryAndComparisonOfForumInformation/index.vue @@ -9,34 +9,34 @@ diff --git a/src/views/BrandComparison/userAreaDistribution/opt1.js b/src/views/BrandComparison/userAreaDistribution/opt1.js index 02ca558..eb5b011 100644 --- a/src/views/BrandComparison/userAreaDistribution/opt1.js +++ b/src/views/BrandComparison/userAreaDistribution/opt1.js @@ -9,7 +9,7 @@ * @FilePath: /data-show/src/views/Index/tailInsight/opt.js */ import * as echarts from "echarts"; -export default function createOptD1() { +export default function createOptD1(dx = [],ds = []) { return { grid: { left: '4%', @@ -45,7 +45,7 @@ export default function createOptD1() { }, yAxis: { type: 'category', - data: ['山西省', '浙江省', '北京市', '江西省', '江苏省', '福建省', '山东省', '天津市'], + data: dx, axisTick: { show: false, }, @@ -55,13 +55,14 @@ export default function createOptD1() { color: "#fff", }, }, + inverse: true }, series: [ { name: '2011', type: 'bar', barWidth: 24, - data: [500, 1000, 2220, 3000, 4000, 3000,2200, 2600], + data: ds, color: new echarts.graphic.LinearGradient(0, 0, 1, 0, [{ offset: 0, color: '#010B19' diff --git a/src/views/BrandComparison/userAreaDistribution/opt2.js b/src/views/BrandComparison/userAreaDistribution/opt2.js index 178233f..9efd42e 100644 --- a/src/views/BrandComparison/userAreaDistribution/opt2.js +++ b/src/views/BrandComparison/userAreaDistribution/opt2.js @@ -15,7 +15,7 @@ for (var i = 0; i < provArr.length; i++) { var str2 = { name: str.replace(re, ''), value: 5 };//拼接对象数组 ini_data.push(str2); } -export default function createOptD2() { +export default function createOptD2(dm = []) { return { tooltip: { trigger: "item", @@ -59,7 +59,7 @@ export default function createOptD2() { }, series: [ { - name: "微博区域", + name: "用户区域", type: "map", mapType: "china", roam: false, @@ -95,39 +95,7 @@ export default function createOptD2() { // areaColor: '#3edffe' // } // }, - data: [ - { - name: "河北省", - value: 1000, - // selected: true, - }, - { - name: "浙江省", - value: 1100, - // selected: true - }, - { - name: "山东省", - value: 1200, - // selected: true - }, - { - name: "山西省", - value: 1300, - // selected: true - }, - { - name: "上海市", - value: 1400, - // selected: true - }, - { - name: "江苏省", - value: 1500, - // selected: true - } - ] - + data: dm } ] } diff --git a/src/views/BrandComparison/weiboUserPortrait/index.vue b/src/views/BrandComparison/weiboUserPortrait/index.vue index 7ac5dc3..f47603e 100644 --- a/src/views/BrandComparison/weiboUserPortrait/index.vue +++ b/src/views/BrandComparison/weiboUserPortrait/index.vue @@ -7,75 +7,190 @@ * @FilePath: /data-show/src/views/BrandComparison/weiboUserPortrait/index.vue --> diff --git a/src/views/BrandComparison/weiboUserPortrait/opt1.js b/src/views/BrandComparison/weiboUserPortrait/opt1.js index fd6dbf6..12129ba 100644 --- a/src/views/BrandComparison/weiboUserPortrait/opt1.js +++ b/src/views/BrandComparison/weiboUserPortrait/opt1.js @@ -6,8 +6,33 @@ * @Description: In User Settings Edit * @FilePath: /data-show/src/views/BrandInsight/weiboPortraits/opt.js */ + +function createData(ds = [], colors) { + let arr = []; + ds.map((ele, index) => { + let obj = { + value: ele.value, + name: ele.key, + itemStyle: { + color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ + //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 + //给第一个设置0,第四个设置1,就是垂直渐变 + offset: 0, + color: 'black' + }, { + offset: 1, + color: colors[index] + }]) + } + } + arr.push(obj) + }) + return arr; +} + import * as echarts from "echarts"; -export default function createOpt1() { +export default function createOpt1(ds = [], color = []) { + const data = createData(ds, color); return { series: [ { @@ -24,46 +49,18 @@ export default function createOpt1() { emphasis: { label: { show: true, - fontSize: '40', + fontSize: '22', color: "#ffff", + fontWeight: 'bold', formatter: (p)=>{ - return p.data.name + '\n' + p.data.value; + return p.data.name + '\n' + p.percent + '%' + '\n' + p.data.value; }, } }, labelLine: { show: false }, - data: [ - { value: 2200, 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: 2200, name: '女性', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#CC9D12' - }])} }, - { value: 2200, name: '未知', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#54BF93' - }])} }, - ], - + data: data, }, { name: 'Access From1', @@ -78,35 +75,7 @@ export default function createOpt1() { show: false }, center: ['50%', '50%'],//边框位置 - data: [ - { value: 2200, 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: 2200, name: '女性', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#CC9D12' - }])} }, - { value: 2200, name: '未知', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#54BF93' - }])} }, - ], + data: data, } ] diff --git a/src/views/BrandComparison/weiboUserPortrait/opt2.js b/src/views/BrandComparison/weiboUserPortrait/opt2.js index eab17f6..bd1a436 100644 --- a/src/views/BrandComparison/weiboUserPortrait/opt2.js +++ b/src/views/BrandComparison/weiboUserPortrait/opt2.js @@ -6,109 +6,78 @@ * @Description: In User Settings Edit * @FilePath: /data-show/src/views/BrandInsight/weiboPortraits/opt.js */ + +function createData(ds = [], colors) { + let arr = []; + ds.map((ele, index) => { + let obj = { + value: ele.value, + name: ele.key, + itemStyle: { + color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ + //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 + //给第一个设置0,第四个设置1,就是垂直渐变 + offset: 0, + color: 'black' + }, { + offset: 1, + color: colors[index] + }]) + } + } + arr.push(obj) + }) + return arr; +} + import * as echarts from "echarts"; -export default function createOpt2() { - return { - series: [ - { - name: 'Access From0', - type: 'pie', - radius: ['63%', '77%'], - avoidLabelOverlap: false, - label: { - show: false, - position: 'center', - fontSize: '40', - color: "#ffff", +export default function createOpt2(ds = [], color = []) { + const data = createData(ds, color); + return { + series: [ + { + name: 'Access From0', + type: 'pie', + radius: ['63%', '77%'], + avoidLabelOverlap: false, + label: { + show: false, + position: 'center', + fontSize: '40', + color: "#ffff", + }, + emphasis: { + label: { + show: true, + fontSize: '22', + color: "#ffff", + fontWeight: 'bold', + formatter: (p) => { + return p.data.name + '\n' + p.percent + '%' + '\n' + p.data.value; }, - emphasis: { - label: { - show: true, - fontSize: '40', - color: "#ffff", - formatter: (p)=>{ - return p.data.name + '\n' + p.data.value; - }, - } - }, - labelLine: { - show: false - }, - data: [ - { value: 2200, 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: 2200, name: '未认证', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#CC9D12' - }])} }, - { value: 2200, name: '未知', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#54BF93' - }])} }, - ], + } + }, + labelLine: { + show: false + }, + data: data, - }, - { - name: 'Access From1', - type: 'pie', - radius: ['80%', '84%'], - avoidLabelOverlap: false, - label: { - show: false, - position: 'center' - }, - labelLine: { - show: false - }, - center: ['50%', '50%'],//边框位置 - data: [ - { value: 2200, 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: 2200, name: '女性', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#CC9D12' - }])} }, - { value: 2200, name: '未知', itemStyle: {color: new echarts.graphic.LinearGradient(0, 1, 1, 0, [{ - //给颜色设置渐变色 前面4个参数,给第一个设置1,第四个设置0 ,就是水平渐变 - //给第一个设置0,第四个设置1,就是垂直渐变 - offset: 0, - color: 'black' - }, { - offset: 1, - color: '#54BF93' - }])} }, - ], - - } - ] - } + }, + { + name: 'Access From1', + type: 'pie', + radius: ['80%', '84%'], + avoidLabelOverlap: false, + label: { + show: false, + position: 'center' + }, + labelLine: { + show: false + }, + center: ['50%', '50%'],//边框位置 + data: data, + } + ] + } }