Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion Framework/src/SliceTrendingTask.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,8 @@ void SliceTrendingTask::drawCanvasMO(TCanvas* thisCanvas, const std::string& var
} // for (int p = 0; p < nuPa; p++)

thisCanvas->cd(1);
multigraph->Draw("A pmc plc");
std::string drawOpt = opt.empty() ? "APL" : opt;
Comment thread
mvishiu11 marked this conversation as resolved.
Outdated
multigraph->Draw(drawOpt.c_str());

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