Even out x axis grid points

pull/959/head
Balint Kovacs 2021-11-28 18:43:44 +00:00
parent 466fd2155c
commit 22fa78ff8d
2 changed files with 2 additions and 2 deletions

View File

@ -330,7 +330,7 @@ function plotGraph(info, style) {
height: g.getHeight()-(24+8),
axes : true,
gridy : grid,
gridx : 50,
gridx : infn.length / 3,
title: title,
xlabel : x=>Math.round(x*dur/(60*infn.length))+" min" // minutes
});

View File

@ -399,7 +399,7 @@ function plotGraph(info, style) {
height: g.getHeight()-(24+8),
axes : true,
gridy : grid,
gridx : 50,
gridx : infn.length / 3,
title: title,
xlabel : x=>Math.round(x*dur/(60*infn.length))+" min" // minutes
});