Flow durations as a scatter with a log axis.

This commit is contained in:
Herbert Wolverson 2024-07-26 09:16:33 -05:00
parent df783f15b8
commit 2560394650

View File

@ -5,8 +5,7 @@ export class FlowDurationsGraph extends DashboardGraph {
super(id); super(id);
this.option = { this.option = {
xAxis: { xAxis: {
type: 'category', type: 'log',
data: [],
name: "Seconds" name: "Seconds"
}, },
yAxis: { yAxis: {
@ -15,7 +14,7 @@ export class FlowDurationsGraph extends DashboardGraph {
}, },
series: { series: {
data: [], data: [],
type: 'bar', type: 'scatter',
} }
}; };
this.option && this.chart.setOption(this.option); this.option && this.chart.setOption(this.option);