[F] Limit graph max value to 120
This commit is contained in:
@@ -53,7 +53,7 @@ export default class OverallLine extends Vue
|
||||
yAxis:
|
||||
{
|
||||
min: (value: any) => Math.floor(value.min),
|
||||
max: (value: any) => value.max
|
||||
max: (value: any) => Math.min(value.max, 120)
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user