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