Skip to content

Commit 64c1386

Browse files
committed
fix: change multigraph drawing options
1 parent f88df8a commit 64c1386

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

Framework/src/SliceTrendingTask.cxx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,8 @@ void SliceTrendingTask::drawCanvasMO(TCanvas* thisCanvas, const std::string& var
402402
} // for (int p = 0; p < nuPa; p++)
403403

404404
thisCanvas->cd(1);
405-
multigraph->Draw("A pmc plc");
405+
std::string drawOpt = opt.empty() ? "APL" : opt;
406+
multigraph->Draw(drawOpt.c_str());
406407

407408
auto legend = new TLegend(0., 0.1, 0.95, 0.9);
408409
legend->SetName("MultiGraphLegend");

0 commit comments

Comments
 (0)