mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2025-02-25 18:55:32 -06:00
Flow durations as a scatter with a log axis.
This commit is contained in:
parent
df783f15b8
commit
2560394650
@ -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);
|
||||||
|
Loading…
Reference in New Issue
Block a user