Commit 703c7aba authored by Inner peace's avatar Inner peace

Merge remote-tracking branch 'origin/240806_pro_release' into 240806_pro_release

parents b91691fb 6bc0dfc2
...@@ -244,6 +244,8 @@ export default { ...@@ -244,6 +244,8 @@ export default {
}, },
yAxis: { yAxis: {
type: "value", type: "value",
min: 0,
minInterval: 1,
splitLine: { splitLine: {
lineStyle: { lineStyle: {
color: "#1E2C58" color: "#1E2C58"
...@@ -444,7 +446,7 @@ export default { ...@@ -444,7 +446,7 @@ export default {
sery.data.push(0); sery.data.push(0);
} }
var maxData = Math.max.apply(null, sery.data); var maxData = Math.max.apply(null, sery.data);
var maxY=maxData*1.2; var maxY=Math.floor(maxData*1.2);
this.people_options.yAxis.max=maxY; this.people_options.yAxis.max=maxY;
this.people_options.series=[]; this.people_options.series=[];
this.people_options.series.push(sery); this.people_options.series.push(sery);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment