share a single timestamp array between all graphData objects
This commit is contained in:
@ -344,7 +344,7 @@ footer a:hover {
|
||||
}
|
||||
|
||||
#big-graph {
|
||||
padding-right: 60px;
|
||||
padding-right: 65px;
|
||||
}
|
||||
|
||||
#big-graph, #big-graph-controls, #big-graph-checkboxes {
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -75,7 +75,7 @@ export class ServerRegistration {
|
||||
}
|
||||
|
||||
buildPlotInstance () {
|
||||
const tickCount = 5
|
||||
const tickCount = 4
|
||||
|
||||
// eslint-disable-next-line new-cap
|
||||
this._plotInstance = new uPlot({
|
||||
|
Reference in New Issue
Block a user