修改图表配置

master
suixy 3 weeks ago
parent 062034291f
commit 9181f517a9

@ -292,6 +292,7 @@
{ {
type: 'value', type: 'value',
name: '℃', name: '℃',
max:150,
axisLine: { axisLine: {
show: true show: true
} }
@ -303,10 +304,12 @@
show: true show: true
}, },
offset: 25, offset: 25,
max:50,
position: 'left' position: 'left'
}, },
{ {
name: 'um', name: 'um',
max:5000,
type: 'value', type: 'value',
axisLine: { axisLine: {
show: true show: true

@ -3,6 +3,12 @@
<head> <head>
<th:block th:include="include :: header('测控点信息列表')" /> <th:block th:include="include :: header('测控点信息列表')" />
</head> </head>
<style>
.bootstrap-tree-table .treetable-indent{
width: 32px;
height: 16px;
}
</style>
<body class="gray-bg"> <body class="gray-bg">
<div class="container-div"> <div class="container-div">
<div class="row"> <div class="row">

@ -8,7 +8,7 @@
</head> </head>
<style> <style>
.chartDiv { .chartDiv {
width: 32.5%; width: 24.5%;
height: 22vw; height: 22vw;
position: relative; position: relative;
display: inline-block; display: inline-block;
@ -168,7 +168,7 @@
radius: radius:
'90%', '90%',
max: max:
Math.max(Math.ceil(v.speed / 100), 1) * 100, 100,
data: data:
[ [
{ {
@ -197,7 +197,7 @@
center: ['50%', '50%'], center: ['50%', '50%'],
radius: radius:
'50%', '50%',
max: Math.max(Math.ceil(v.displacement / 100), 1) * 100, max: 5000,
data: [ data: [
{ {
value: v.displacement, value: v.displacement,

Loading…
Cancel
Save