parent
c4b9d8c8bc
commit
0256369031
@ -1,117 +1,95 @@
|
|||||||
/*
|
/*
|
||||||
* @Author: your name
|
* @Author: your name
|
||||||
* @Date: 2021-10-09 11:01:19
|
* @Date: 2021-10-09 11:01:19
|
||||||
* @LastEditTime: 2021-10-09 16:52:04
|
* @LastEditTime: 2021-10-21 14:55:41
|
||||||
* @LastEditors: Please set LastEditors
|
* @LastEditors: Please set LastEditors
|
||||||
* @Description: In User Settings Edit
|
* @Description: In User Settings Edit
|
||||||
* @FilePath: /data-show/src/views/Index/spreadTheSound/opt.js
|
* @FilePath: /data-show/src/views/Index/spreadTheSound/opt.js
|
||||||
*/
|
*/
|
||||||
export default function createOpt() {
|
function createData(ds = []) {
|
||||||
return {
|
let arr = [];
|
||||||
grid: {
|
for (let i = 0; i < ds.length; i++) {
|
||||||
left: '3%',
|
let arr1 = ds[i];
|
||||||
right: '6%',
|
for (let j = 0; j < arr1.length; j++) {
|
||||||
bottom: '3%',
|
let n = arr.findIndex(ele => {
|
||||||
top: '22%',
|
return ele.name === arr1[j].key;
|
||||||
containLabel: true
|
})
|
||||||
},
|
if(n === -1) {
|
||||||
tooltip: {
|
let obj =
|
||||||
trigger: "axis",
|
{
|
||||||
backgroundColor: "#08182F",
|
name: arr1[j].key,
|
||||||
color: "#fff",
|
type: 'bar',
|
||||||
borderColor: "#3373CC",
|
stack: 'total',
|
||||||
textStyle: {
|
barWidth: 24,
|
||||||
color: "#fff", //设置文字颜色
|
emphasis: {
|
||||||
},
|
focus: 'series'
|
||||||
extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;"
|
},
|
||||||
},
|
data: [arr1[j].value]
|
||||||
legend: {
|
}
|
||||||
textStyle: { //图例文字的样式
|
arr.push(obj)
|
||||||
color: '#fff'
|
} else {
|
||||||
},
|
arr[n].data.push(arr1[j].value)
|
||||||
y: 'top',
|
}
|
||||||
x: 0
|
}
|
||||||
|
}
|
||||||
|
return arr;
|
||||||
|
}
|
||||||
|
export default function createOpt(dx = [], ds = []) {
|
||||||
|
const data = createData(ds);
|
||||||
|
return {
|
||||||
|
grid: {
|
||||||
|
left: 10,
|
||||||
|
right: 40,
|
||||||
|
bottom: 10,
|
||||||
|
top: 60,
|
||||||
|
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: 'top',
|
||||||
|
x: 0
|
||||||
|
},
|
||||||
|
xAxis: {
|
||||||
|
type: 'category',
|
||||||
|
axisTick: {
|
||||||
|
show: false,
|
||||||
|
},
|
||||||
|
axisLine: {
|
||||||
|
show: false,
|
||||||
|
lineStyle: {
|
||||||
|
color: "#fff",
|
||||||
},
|
},
|
||||||
xAxis: {
|
},
|
||||||
type: 'category',
|
data: dx
|
||||||
axisTick: {
|
},
|
||||||
show: false,
|
yAxis: {
|
||||||
},
|
type: 'value',
|
||||||
axisLine: {
|
axisLine: {
|
||||||
show: false,
|
show: false,
|
||||||
lineStyle: {
|
lineStyle: {
|
||||||
color: "#fff",
|
color: "#fff",
|
||||||
},
|
|
||||||
},
|
|
||||||
data: ['Mon', 'Tue', 'Wed', 'Thu', 'Fri']
|
|
||||||
},
|
},
|
||||||
yAxis: {
|
},
|
||||||
type: 'value',
|
splitLine: {
|
||||||
axisLine: {
|
lineStyle: {
|
||||||
show: false,
|
type: "dashed", // y轴分割线类型
|
||||||
lineStyle: {
|
color: "#012b4b",
|
||||||
color: "#fff",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
splitLine: {
|
|
||||||
lineStyle: {
|
|
||||||
type: "dashed", // y轴分割线类型
|
|
||||||
color: "#012b4b",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
series: [
|
},
|
||||||
{
|
},
|
||||||
name: 'Direct',
|
series: data
|
||||||
type: 'bar',
|
}
|
||||||
stack: 'total',
|
|
||||||
barWidth: 24,
|
|
||||||
emphasis: {
|
|
||||||
focus: 'series'
|
|
||||||
},
|
|
||||||
data: [320, 302, 301, 334, 390]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Mail Ad',
|
|
||||||
type: 'bar',
|
|
||||||
stack: 'total',
|
|
||||||
barWidth: 24,
|
|
||||||
emphasis: {
|
|
||||||
focus: 'series'
|
|
||||||
},
|
|
||||||
data: [120, 132, 101, 134, 90]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Affiliate Ad',
|
|
||||||
type: 'bar',
|
|
||||||
stack: 'total',
|
|
||||||
barWidth: 24,
|
|
||||||
emphasis: {
|
|
||||||
focus: 'series'
|
|
||||||
},
|
|
||||||
data: [220, 182, 191, 234, 290]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Video Ad',
|
|
||||||
type: 'bar',
|
|
||||||
stack: 'total',
|
|
||||||
barWidth: 24,
|
|
||||||
emphasis: {
|
|
||||||
focus: 'series'
|
|
||||||
},
|
|
||||||
data: [150, 212, 201, 154, 190]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
name: 'Search Engine',
|
|
||||||
type: 'bar',
|
|
||||||
stack: 'total',
|
|
||||||
barWidth: 24,
|
|
||||||
emphasis: {
|
|
||||||
focus: 'series'
|
|
||||||
},
|
|
||||||
data: [820, 832, 901, 934, 1290]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
Loading…
Reference in new issue