|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
/*
|
|
|
|
|
* @Author: your name
|
|
|
|
|
* @Date: 2021-10-12 16:40:53
|
|
|
|
|
* @LastEditTime: 2021-11-12 17:25:19
|
|
|
|
|
* @LastEditTime: 2021-11-19 19:48:04
|
|
|
|
|
* @LastEditors: Please set LastEditors
|
|
|
|
|
* @Description: In User Settings Edit
|
|
|
|
|
* @FilePath: /data-show/src/views/BrandInsight/forumCommunicationTrend/opt.js
|
|
|
|
@ -41,7 +41,13 @@ export default function createOpt(dx = [], ds = []) {
|
|
|
|
|
},
|
|
|
|
|
axisLabel : {
|
|
|
|
|
formatter: (value) => {
|
|
|
|
|
let str = value.substring(10,16)
|
|
|
|
|
let rex = "00:00:00";
|
|
|
|
|
let str = "";
|
|
|
|
|
if(value.indexOf(rex) === -1) {
|
|
|
|
|
str = value.substring(10, 16)
|
|
|
|
|
} else {
|
|
|
|
|
str = value.substring(0, 10)
|
|
|
|
|
}
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|