share a single timestamp array between all graphData objects

This commit is contained in:
Nick Krecklow
2020-05-11 18:12:29 -05:00
parent 59ec7d151f
commit c2f6d04e72
10 changed files with 100 additions and 52 deletions

View File

@ -344,7 +344,7 @@ footer a:hover {
}
#big-graph {
padding-right: 60px;
padding-right: 65px;
}
#big-graph, #big-graph-controls, #big-graph-checkboxes {

View File

@ -37,6 +37,11 @@ export class GraphDisplayManager {
for (let i = 0; i < playerCounts.length; i++) {
this._graphData[i].push(playerCounts[i])
}
this._plotInstance.setData([
this._graphTimestamps,
...this._graphData
])
}
loadLocalStorage () {
@ -183,7 +188,7 @@ export class GraphDisplayManager {
{
font: '14px "Open Sans", sans-serif',
stroke: '#FFF',
size: 60,
size: 65,
grid: {
stroke: '#333',
width: 1

View File

@ -12,7 +12,7 @@ export class RelativeScale {
const ticks = (scaledMax - scaledMin) / scale
if (ticks + 1 <= tickCount) {
if (ticks < tickCount + 1) {
return [scaledMin, scaledMax, scale]
} else {
// Too many steps between min/max, increase factor and try again

View File

@ -75,7 +75,7 @@ export class ServerRegistration {
}
buildPlotInstance () {
const tickCount = 5
const tickCount = 4
// eslint-disable-next-line new-cap
this._plotInstance = new uPlot({