You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
2.4 KiB
91 lines
2.4 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-15 15:15:27
|
|
* @LastEditTime: 2021-10-19 11:44:41
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/BrandComparison/channelDistribution/opt.js
|
|
*/
|
|
export default function createOpt() {
|
|
return {
|
|
grid: {
|
|
top: "56px",
|
|
left: "16px",
|
|
right: "28px",
|
|
bottom: "16px",
|
|
containLabel: true,
|
|
},
|
|
legend: {
|
|
data: ['事件一', '事件二'],
|
|
textStyle: { //图例文字的样式
|
|
color: '#fff'
|
|
},
|
|
y: 12,
|
|
x: 16
|
|
},
|
|
tooltip: {
|
|
trigger: "axis",
|
|
backgroundColor: "#08182F",
|
|
color: "#fff",
|
|
borderColor: "#3373CC",
|
|
textStyle: {
|
|
color: "#fff", //设置文字颜色
|
|
},
|
|
extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;",
|
|
},
|
|
xAxis: [
|
|
{
|
|
type: 'category',
|
|
axisTick: {
|
|
show: false,
|
|
},
|
|
axisLine: {
|
|
show: false,
|
|
lineStyle: {
|
|
color: "#fff",
|
|
},
|
|
},
|
|
data: ['新闻', '论坛', '微信', 'APP', '微博', "其他"]
|
|
}
|
|
],
|
|
yAxis: [
|
|
{
|
|
type: 'value',
|
|
axisLine: {
|
|
show: false,
|
|
lineStyle: {
|
|
color: "#FFF",
|
|
},
|
|
},
|
|
splitLine: {
|
|
lineStyle: {
|
|
type: "dashed", // y轴分割线类型
|
|
color: "#012b4b",
|
|
},
|
|
},
|
|
}
|
|
],
|
|
series: [
|
|
{
|
|
name: '事件一',
|
|
type: 'bar',
|
|
barGap: 0,
|
|
barWidth: 16,
|
|
emphasis: {
|
|
focus: 'series'
|
|
},
|
|
data: [320, 332, 301, 334, 390, 400]
|
|
},
|
|
{
|
|
name: '事件二',
|
|
type: 'bar',
|
|
barWidth: 16,
|
|
emphasis: {
|
|
focus: 'series'
|
|
},
|
|
data: [220, 182, 191, 234, 290, 300]
|
|
}
|
|
|
|
]
|
|
}
|
|
} |