mirror of
https://github.com/plan-player-analytics/Plan.git
synced 2024-11-16 15:45:16 +01:00
Added xAxis: {ordinal: false} to bypass performance impact
Affects issues: - Fixed #2135
This commit is contained in:
parent
db9ad77326
commit
113829477c
@ -63,6 +63,9 @@ function diskChart(id, series) {
|
||||
softMax: 2,
|
||||
softMin: 0
|
||||
},
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
title: {text: ''},
|
||||
legend: {
|
||||
enabled: true
|
||||
@ -83,7 +86,8 @@ function horizontalBarChart(id, categories, series, text) {
|
||||
categories: categories,
|
||||
title: {
|
||||
text: null
|
||||
}
|
||||
},
|
||||
ordinal: false
|
||||
},
|
||||
yAxis: {
|
||||
min: 0,
|
||||
@ -122,6 +126,9 @@ function lineChart(id, series) {
|
||||
softMax: 2,
|
||||
softMin: 0
|
||||
},
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
title: {text: ''},
|
||||
legend: {
|
||||
enabled: true
|
||||
@ -140,6 +147,9 @@ function dayByDay(id, series) {
|
||||
softMax: 2,
|
||||
softMin: 0
|
||||
},
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
title: {text: ''},
|
||||
legend: {
|
||||
enabled: true
|
||||
@ -266,6 +276,9 @@ function performanceChart(id, playersOnlineSeries, tpsSeries, cpuSeries, ramSeri
|
||||
}
|
||||
}
|
||||
}],
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
legend: {
|
||||
enabled: true
|
||||
},
|
||||
@ -373,6 +386,9 @@ function playersChart(id, playersOnlineSeries, sel) {
|
||||
softMax: 2,
|
||||
softMin: 0
|
||||
},
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
/* Average online players graph Disabled
|
||||
xAxis: {
|
||||
events: {
|
||||
@ -403,6 +419,9 @@ function playersChartNoNav(id, playersOnlineSeries) {
|
||||
softMax: 2,
|
||||
softMin: 0
|
||||
},
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
title: {text: ''},
|
||||
plotOptions: {
|
||||
areaspline: {
|
||||
@ -426,7 +445,8 @@ function punchCard(id, punchcardSeries) {
|
||||
hour: '%I %P',
|
||||
day: '%I %P'
|
||||
},
|
||||
tickInterval: 3600000
|
||||
tickInterval: 3600000,
|
||||
ordinal: false
|
||||
},
|
||||
time: {
|
||||
timezoneOffset: 0
|
||||
@ -480,6 +500,9 @@ function resourceChart(id, cpuSeries, ramSeries, playersOnlineSeries) {
|
||||
}
|
||||
}
|
||||
}],
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
legend: {
|
||||
enabled: true
|
||||
},
|
||||
@ -632,7 +655,8 @@ function stackChart(id, categories, series, label) {
|
||||
tickmarkPlacement: 'on',
|
||||
title: {
|
||||
enabled: false
|
||||
}
|
||||
},
|
||||
ordinal: false
|
||||
},
|
||||
yAxis: {
|
||||
title: {
|
||||
@ -689,6 +713,9 @@ function tpsChart(id, tpsSeries, playersOnlineSeries) {
|
||||
}
|
||||
}
|
||||
}],
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
legend: {
|
||||
enabled: true
|
||||
},
|
||||
@ -731,6 +758,9 @@ function worldChart(id, entitySeries, chunkSeries, playersOnlineSeries) {
|
||||
}
|
||||
}
|
||||
}],
|
||||
xAxis: {
|
||||
ordinal: false
|
||||
},
|
||||
legend: {
|
||||
enabled: true
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user