|
|
|
@ -1,17 +1,70 @@
|
|
|
|
|
/*
|
|
|
|
|
* @Author: your name
|
|
|
|
|
* @Date: 2021-10-09 11:01:19
|
|
|
|
|
* @LastEditTime: 2021-10-15 15:51:52
|
|
|
|
|
* @LastEditTime: 2021-11-11 14:49:46
|
|
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
|
|
* @Description: In User Settings Edit
|
|
|
|
|
* @FilePath: /data-show/src/views/Index/spreadTheSound/opt.js
|
|
|
|
|
*/
|
|
|
|
|
export default function createOpt() {
|
|
|
|
|
import * as echarts from "echarts";
|
|
|
|
|
import { bigNumberTransform } from "@/utils/gol/dataTool"
|
|
|
|
|
let colors = ['rgba(203,118,58,1)', 'rgba(202,156,17,1)', 'rgba(90,203,156,1)', 'rgba(99,173,204,1)', 'rgba(55,113,190,1)', "rgba(138,191,66,1)", 'rgba(181,191,67,1)', 'rgba(203,91,65,1)']
|
|
|
|
|
let colors2 = ['rgba(203,118,58,0.6)', 'rgba(202,156,17,0.6)', 'rgba(90,203,156,0.6)', 'rgba(99,173,204,0.6)', 'rgba(55,113,190,0.6)', "rgba(138,191,66,0.6)", 'rgba(181,191,67,0.6)', 'rgba(203,91,65,0.6)']
|
|
|
|
|
function createData(ds = []) {
|
|
|
|
|
let arr = [];
|
|
|
|
|
for (let i = 0; i < ds.length; i++) {
|
|
|
|
|
let arr1 = ds[i];
|
|
|
|
|
for (let j = 0; j < arr1.length; j++) {
|
|
|
|
|
let n = arr.findIndex(ele => {
|
|
|
|
|
return ele.name === arr1[j].key;
|
|
|
|
|
})
|
|
|
|
|
if(n === -1) {
|
|
|
|
|
let obj =
|
|
|
|
|
{
|
|
|
|
|
name: arr1[j].key,
|
|
|
|
|
type: 'bar',
|
|
|
|
|
stack: 'total',
|
|
|
|
|
barWidth: 24,
|
|
|
|
|
barGap: "-100%",
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: 'series'
|
|
|
|
|
},
|
|
|
|
|
itemStyle: {
|
|
|
|
|
normal: {
|
|
|
|
|
//柱体的颜色
|
|
|
|
|
//右,下,左,上(1,0,0,0)表示从正右开始向左渐变
|
|
|
|
|
color: function () {
|
|
|
|
|
return new echarts.graphic.LinearGradient(0, 0, 0, 1, [
|
|
|
|
|
{
|
|
|
|
|
offset: 0,
|
|
|
|
|
color: colors[j]
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
offset: 1,
|
|
|
|
|
color: colors2[j]
|
|
|
|
|
}
|
|
|
|
|
], false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
data: [arr1[j].value]
|
|
|
|
|
}
|
|
|
|
|
arr.push(obj)
|
|
|
|
|
} else {
|
|
|
|
|
arr[n].data.push(arr1[j].value)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return arr;
|
|
|
|
|
}
|
|
|
|
|
export default function createOpt(dx=[], ds=[]) {
|
|
|
|
|
const data = createData(ds);
|
|
|
|
|
return {
|
|
|
|
|
grid: {
|
|
|
|
|
left: 16,
|
|
|
|
|
right: 16,
|
|
|
|
|
bottom: 16,
|
|
|
|
|
left: 10,
|
|
|
|
|
right: '5%',
|
|
|
|
|
bottom: 10,
|
|
|
|
|
top: 56,
|
|
|
|
|
containLabel: true
|
|
|
|
|
},
|
|
|
|
@ -27,10 +80,13 @@ export default function createOpt() {
|
|
|
|
|
},
|
|
|
|
|
legend: {
|
|
|
|
|
textStyle: { //图例文字的样式
|
|
|
|
|
color: '#fff'
|
|
|
|
|
color: '#fff',
|
|
|
|
|
fontSize: 10
|
|
|
|
|
},
|
|
|
|
|
y: 10,
|
|
|
|
|
x: 16
|
|
|
|
|
x: 16,
|
|
|
|
|
itemWidth: 12,
|
|
|
|
|
itemHeight: 12
|
|
|
|
|
},
|
|
|
|
|
xAxis: {
|
|
|
|
|
type: 'category',
|
|
|
|
@ -43,7 +99,7 @@ export default function createOpt() {
|
|
|
|
|
color: "#fff",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
data: ['汽车之家', '懂车帝', '腾讯新闻', '凤凰网', '新浪微博']
|
|
|
|
|
data: dx
|
|
|
|
|
},
|
|
|
|
|
yAxis: {
|
|
|
|
|
type: 'value',
|
|
|
|
@ -53,6 +109,12 @@ export default function createOpt() {
|
|
|
|
|
color: "#fff",
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
axisLabel: {
|
|
|
|
|
formatter: (value) => {
|
|
|
|
|
let str = bigNumberTransform(value);
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
splitLine: {
|
|
|
|
|
lineStyle: {
|
|
|
|
|
type: "dashed", // y轴分割线类型
|
|
|
|
@ -60,68 +122,7 @@ export default function createOpt() {
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
},
|
|
|
|
|
series: [
|
|
|
|
|
{
|
|
|
|
|
name: '奥迪',
|
|
|
|
|
type: 'bar',
|
|
|
|
|
stack: 'total',
|
|
|
|
|
barWidth: 24,
|
|
|
|
|
emphasis: {
|
|
|
|
|
focus: 'series'
|
|
|
|
|
},
|
|
|
|
|
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]
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
series: data
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|