Correct axis labeling on RTT 3D

This commit is contained in:
Herbert Wolverson 2024-06-29 10:01:56 -05:00
parent efb1b7fd76
commit 6b8a2f39e3

View File

@ -22,14 +22,17 @@ export class RttHistogram3D extends DashboardGraph {
tooltip: {},
xAxis3D: {
type: 'category',
data: catAxis
data: catAxis,
name: "RTT"
},
yAxis3D: {
type: 'category',
data: timeAxis
data: timeAxis,
name: "Time"
},
zAxis3D: {
type: 'value'
type: 'value',
name: "Samples"
},
grid3D: {
boxWidth: 100,