|
@@ -93,9 +93,9 @@ const emit = defineEmits(['setTimeFun']);
|
|
const chartOptions1 = reactive({
|
|
const chartOptions1 = reactive({
|
|
xAxis: {
|
|
xAxis: {
|
|
type: 'datetime',
|
|
type: 'datetime',
|
|
- labels: {
|
|
|
|
- format: '{value:%Y-%m-%d %H:%M:%S}',
|
|
|
|
- },
|
|
|
|
|
|
+ // labels: {
|
|
|
|
+ // format: '{value:%Y-%m-%d %H:%M:%S}',
|
|
|
|
+ // },
|
|
},
|
|
},
|
|
time: {
|
|
time: {
|
|
useUTC: false
|
|
useUTC: false
|
|
@@ -137,7 +137,18 @@ const chartOptions1 = reactive({
|
|
},
|
|
},
|
|
plotOptions: {
|
|
plotOptions: {
|
|
series: {
|
|
series: {
|
|
- turboThreshold: 0 //性能阈值检查,默认值为1000,当数据量超过这个值就会报错;如果需要关掉性能阈值检查,可以将此参数设置为 0
|
|
|
|
|
|
+ turboThreshold: 0, //性能阈值检查,默认值为1000,当数据量超过这个值就会报错;如果需要关掉性能阈值检查,可以将此参数设置为 0
|
|
|
|
+ // marker: {//鼠标放上去的取消小圆点
|
|
|
|
+ // radius: 6, //曲线点半径,默认是4
|
|
|
|
+ // smooth:3,
|
|
|
|
+ // symbol: 'triangle' //曲线点类型:”circle”, “square”, “diamond”, “triangle”,”triangle-down”,默认是”circle”
|
|
|
|
+ // }
|
|
|
|
+ marker: {
|
|
|
|
+ enabled : true,
|
|
|
|
+ radius : 3,
|
|
|
|
+ // symbol: 'url(https://www.highcharts.com/samples/graphics/sun.png)'
|
|
|
|
+ },
|
|
|
|
+
|
|
},
|
|
},
|
|
},
|
|
},
|
|
|
|
|