This website works better with JavaScript.
Home
Explore
Help
Register
Sign In
leo
/
Saisiwei_WEB
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
修改柱状图y轴坐标单位
pull/1/head
wangxy
3 years ago
parent
19fb277186
commit
00f1f13269
3 changed files
with
21 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-1
src/views/questionnaire/satis/components/BarChart.vue
+7
-1
src/views/questionnaire/satis/components/ThreeBarChart.vue
+7
-1
src/views/questionnaire/satis/components/TwoBarChart.vue
+ 7
- 1
src/views/questionnaire/satis/components/BarChart.vue
View File
@ -115,7 +115,13 @@ export default {
type
:
'value'
,
axisTick
:
{
show
:
false
}
}
,
/
/
坐
标
轴
上
的
字
axisLabel
:
{
formatter
:
function
(
value
)
{
return
(
value
*
100
)
.
toFixed
(
0
)
+
'%'
}
}
,
}
]
,
series
:
[
{
name
:
'满意度'
,
+ 7
- 1
src/views/questionnaire/satis/components/ThreeBarChart.vue
View File
@ -128,7 +128,13 @@ export default {
type
:
'value'
,
axisTick
:
{
show
:
false
}
}
,
/
/
坐
标
轴
上
的
字
axisLabel
:
{
formatter
:
function
(
value
)
{
return
(
value
*
100
)
.
toFixed
(
0
)
+
'%'
}
}
,
}
]
,
series
:
this
.
seriesData
}
)
+ 7
- 1
src/views/questionnaire/satis/components/TwoBarChart.vue
View File
@ -125,7 +125,13 @@ export default {
type
:
'value'
,
axisTick
:
{
show
:
false
}
}
,
/
/
坐
标
轴
上
的
字
axisLabel
:
{
formatter
:
function
(
value
)
{
return
(
value
*
100
)
.
toFixed
(
0
)
+
'%'
}
}
,
}
]
,
series
:
this
.
seriesData
}
)
Write
Preview
Loading…
Cancel
Save