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.
49 lines
1.2 KiB
49 lines
1.2 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2021-10-12 15:32:24
|
|
* @LastEditTime: 2021-11-09 15:45:48
|
|
* @LastEditors: Please set LastEditors
|
|
* @Description: In User Settings Edit
|
|
* @FilePath: /data-show/src/views/BrandInsight/weiboVolumeTrend/opt.js
|
|
*/
|
|
export default function createOpt(dx=[], ds=[]) {
|
|
return {
|
|
title: {
|
|
text: 'Basic Radar Chart',
|
|
show: false
|
|
},
|
|
tooltip: {
|
|
trigger: "item",
|
|
backgroundColor: "#08182F",
|
|
color: "#fff",
|
|
borderColor: "#3373CC",
|
|
textStyle: {
|
|
color: "#fff", //设置文字颜色
|
|
},
|
|
extraCssText: "box-shadow: 0px 0px 10px 0px #3373CC;"
|
|
},
|
|
radar: {
|
|
// shape: 'circle',
|
|
indicator:dx
|
|
},
|
|
series: [
|
|
{
|
|
name: 'Budget vs spending',
|
|
type: 'radar',
|
|
data: [
|
|
{
|
|
value: ds,
|
|
name: '负面话题分布:',
|
|
itemStyle: {
|
|
color: "rgba(194, 151, 22)",
|
|
},
|
|
areaStyle: {
|
|
color: 'rgba(194, 151, 22, 0.2)'
|
|
}
|
|
}
|
|
]
|
|
}
|
|
]
|
|
};
|
|
}
|