This macro generates two TH1D objects and build RLegend In addition use of auto colors are shown.
#include "ROOT/RLegend.hxx"
{
for (
int n=0;
n<1000;
n++) {
}
auto canvas = RCanvas::Create("RLegend example");
canvas->Draw<
RPaletteDrawable>(
RPalette({{0., RColor::kWhite}, {.3, RColor::kRed}, {.7, RColor::kBlue}, {1., RColor::kBlack}}),
false);
auto legend = canvas->Draw<RLegend>(
"Legend title");
legend->fill.style = RAttrFill::k3019;
legend->border.color = RColor::kRed;
custom->line.color = RColor::kGreen;
custom->line.style = RAttrLine::kSolid;
custom->fill.color = RColor::kBlue;
custom->fill.style = RAttrFill::k3004;
custom->marker.color = RColor::kRed;
custom->marker.style = RAttrMarker::kOpenCross;
canvas->SetSize(1000, 700);
canvas->Show();
}
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
R__EXTERN TRandom * gRandom
Objects used to configure the different axis types.
A color palette draw near the frame.
virtual Double_t Gaus(Double_t mean=0, Double_t sigma=1)
Samples a random number from the standard Normal (Gaussian) Distribution with the given mean and sigm...
- Date
- 2019-10-09
- Warning
- This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
- Author
- Sergey Linev s.lin.nosp@m.ev@g.nosp@m.si.de
Definition in file rlegend.cxx.