Skip to content

Commit

Permalink
switch places and re-name tables
Browse files Browse the repository at this point in the history
  • Loading branch information
simei94 committed Jun 19, 2024
1 parent 7935cf0 commit d28cfe9
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/main/java/org/matsim/dashboard/AverageDrtDashboard.java
Original file line number Diff line number Diff line change
Expand Up @@ -39,20 +39,20 @@ public void configure(Header header, Layout layout) {
header.description = "Overview for the demand-responsive mode '" + mode + "'. This dashboard shows average values for " + noRuns +
" simulation runs. For the results of the specific runs please choose the according directory next to this dashboard.yaml.";

// DEMAND
layout.row("demand")
// SUPPLY
layout.row("supply")
.el(Table.class, (viz, data) -> {
viz.title = "Average demand results";
viz.dataset = postProcess(data, "avg_demand_stats.csv");
viz.title = "Service summary";
viz.dataset = postProcess(data, "avg_supply_stats.csv");
viz.showAllRows = true;
viz.width = 1.;
});

// SUPPLY
layout.row("supply")
// DEMAND
layout.row("demand")
.el(Table.class, (viz, data) -> {
viz.title = "Average service results";
viz.dataset = postProcess(data, "avg_supply_stats.csv");
viz.title = "Demand summary";
viz.dataset = postProcess(data, "avg_demand_stats.csv");
viz.showAllRows = true;
viz.width = 1.;
});
Expand Down

0 comments on commit d28cfe9

Please sign in to comment.