|
|
|
@ -6,22 +6,77 @@
|
|
|
|
|
* @Description: In User Settings Edit
|
|
|
|
|
* @FilePath: /data-show/src/views/Index/spreadTheSound/opt.js
|
|
|
|
|
*/
|
|
|
|
|
/*
|
|
|
|
|
series: [
|
|
|
|
|
|
|
|
|
|
import * as echarts from "echarts";
|
|
|
|
|
|
|
|
|
|
let colors = [new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
name: '奥迪',
|
|
|
|
|
type: 'bar',
|
|
|
|
|
stack: 'total',
|
|
|
|
|
barWidth: 24,
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: 'series'
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: '#3373CC'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: '#071a32'
|
|
|
|
|
}
|
|
|
|
|
], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: '#63AECC'
|
|
|
|
|
},
|
|
|
|
|
data: [320, 302, 301, 334, 390]
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: '#071a32'
|
|
|
|
|
}
|
|
|
|
|
], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: '#54BF93'
|
|
|
|
|
},
|
|
|
|
|
*/
|
|
|
|
|
function createData(dataList = []) {
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: '#071a32'
|
|
|
|
|
}
|
|
|
|
|
], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: '#CC9D12'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: '#071a32'
|
|
|
|
|
}
|
|
|
|
|
], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: '#CC7733'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: '#071a32'
|
|
|
|
|
}
|
|
|
|
|
], false), new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: '#CC5B41'
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: '#071a32'
|
|
|
|
|
}
|
|
|
|
|
], false)]
|
|
|
|
|
|
|
|
|
|
function createData(dataList = [], dx = []) {
|
|
|
|
|
let arr = [];
|
|
|
|
|
dataList.forEach(ele => {
|
|
|
|
|
let a = [];
|
|
|
|
|
let Data = ele.value || [];
|
|
|
|
|
dx.forEach(e => {
|
|
|
|
|
Data.forEach(ex => {
|
|
|
|
|
if (ex.key === e) {
|
|
|
|
|
a.push(ex.value)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
let o = {
|
|
|
|
|
name: ele.key,
|
|
|
|
|
type: 'bar',
|
|
|
|
@ -30,22 +85,21 @@ function createData(dataList = []) {
|
|
|
|
|
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]
|
|
|
|
|
data: a
|
|
|
|
|
};
|
|
|
|
|
arr.push(o);
|
|
|
|
|
})
|
|
|
|
|
return arr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default function createOpt(dataList = []) {
|
|
|
|
|
let info = createData(dataList);
|
|
|
|
|
export default function createOpt(dx = [], dataList = []) {
|
|
|
|
|
let info = createData(dataList, dx);
|
|
|
|
|
return {
|
|
|
|
|
grid: {
|
|
|
|
|
left: 16,
|
|
|
|
|
right: 16,
|
|
|
|
|
bottom: 16,
|
|
|
|
|
top: 56,
|
|
|
|
|
left: 10,
|
|
|
|
|
right: '5%',
|
|
|
|
|
bottom: 10,
|
|
|
|
|
top: 52,
|
|
|
|
|
containLabel: true
|
|
|
|
|
},
|
|
|
|
|
tooltip: {
|
|
|
|
@ -58,25 +112,32 @@ export default function createOpt(dataList = []) {
|
|
|
|
|
},
|
|
|
|
|
extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;"
|
|
|
|
|
},
|
|
|
|
|
color: colors,
|
|
|
|
|
legend: {
|
|
|
|
|
textStyle: { //图例文字的样式
|
|
|
|
|
color: '#fff'
|
|
|
|
|
color: '#fff',
|
|
|
|
|
fontSize: 10
|
|
|
|
|
},
|
|
|
|
|
y: 10,
|
|
|
|
|
x: 16
|
|
|
|
|
x: 16,
|
|
|
|
|
itemWidth: 12,
|
|
|
|
|
itemHeight: 12
|
|
|
|
|
},
|
|
|
|
|
xAxis: {
|
|
|
|
|
type: 'category',
|
|
|
|
|
axisTick: {
|
|
|
|
|
show: false,
|
|
|
|
|
},
|
|
|
|
|
axisLabel: {
|
|
|
|
|
interval: 0
|
|
|
|
|
},
|
|
|
|
|
axisLine: {
|
|
|
|
|
show: false,
|
|
|
|
|
lineStyle: {
|
|
|
|
|
color: "#fff",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
data: ['名人', '媒体', '企业', '政府', '个人大v']
|
|
|
|
|
data: dx
|
|
|
|
|
},
|
|
|
|
|
yAxis: {
|
|
|
|
|
type: 'value',
|
|
|
|
|