Even out x axis grid points
parent
466fd2155c
commit
22fa78ff8d
|
|
@ -330,7 +330,7 @@ function plotGraph(info, style) {
|
||||||
height: g.getHeight()-(24+8),
|
height: g.getHeight()-(24+8),
|
||||||
axes : true,
|
axes : true,
|
||||||
gridy : grid,
|
gridy : grid,
|
||||||
gridx : 50,
|
gridx : infn.length / 3,
|
||||||
title: title,
|
title: title,
|
||||||
xlabel : x=>Math.round(x*dur/(60*infn.length))+" min" // minutes
|
xlabel : x=>Math.round(x*dur/(60*infn.length))+" min" // minutes
|
||||||
});
|
});
|
||||||
|
|
|
||||||
|
|
@ -399,7 +399,7 @@ function plotGraph(info, style) {
|
||||||
height: g.getHeight()-(24+8),
|
height: g.getHeight()-(24+8),
|
||||||
axes : true,
|
axes : true,
|
||||||
gridy : grid,
|
gridy : grid,
|
||||||
gridx : 50,
|
gridx : infn.length / 3,
|
||||||
title: title,
|
title: title,
|
||||||
xlabel : x=>Math.round(x*dur/(60*infn.length))+" min" // minutes
|
xlabel : x=>Math.round(x*dur/(60*infn.length))+" min" // minutes
|
||||||
});
|
});
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue