This ROOT 7 example shows how to create a frame.
#include "ROOT/RFrameTitle.hxx"
#include "ROOT/RLine.hxx"
#include "ROOT/RText.hxx"
#include "ROOT/RBox.hxx"
auto rframe_style =
RStyle::Parse(
"frame { x_ticks_width: 3; y_ticks_width: 3; }"
"title { margin: 0.02; height: 0.1; text_color: blue; text_size: 0.07; }"
"line { line_width: 2; }"
"text { text_align: 13; text_size: 0.03; }");
void rframe()
{
auto frame = canvas->AddFrame();
frame->border.width = 3;
frame->margins = 0.2_normal;
frame->margins.top = 0.25_normal;
frame->drawAxes = true;
frame->x.min = 0;
frame->x.max = 100;
frame->x.zoomMin = 5.;
frame->x.zoomMax = 95.;
frame->y.min = 0;
frame->y.max = 100;
frame->y.zoomMin = 5;
frame->y.zoomMax = 95;
auto title = canvas->Draw<RFrameTitle>("Frame title");
title->margin = 0.01_normal;
title->height = 0.1_normal;
auto line0 = canvas->Draw<RLine>(
RPadPos(100_px, .9_normal),
RPadPos(900_px, .9_normal));
auto text0 = canvas->Draw<RText>(
RPadPos(100_px, .9_normal + 5_px),
"Line drawn on pad, fix pixel length");
auto line1 = canvas->Draw<RLine>(
RPadPos(.1_normal, .1_normal),
RPadPos(.9_normal, .1_normal));
auto text1 = canvas->Draw<RText>(
RPadPos(.1_normal, .1_normal),
"Line drawn on pad, normalized coordinates");
auto line2 = canvas->Draw<RLine>(
RPadPos(-.2_normal, -.1_normal),
RPadPos(-.2_normal, 1.1_normal));
line2->onFrame = true;
auto text2 =
canvas->Draw<RText>(
RPadPos(-.2_normal - 5_px, -.1_normal),
"Line drawn on frame, normalized coordinates");
text2->onFrame = true;
text2->text.angle = 90;
auto line3 = canvas->Draw<RLine>(
RPadPos(110_user, -.1_normal),
RPadPos(110_user, 1.1_normal));
line3->onFrame = true;
auto text3 = canvas->Draw<RText>(
RPadPos(110_user, -.1_normal),
"Line drawn on frame, user coordinates");
text3->onFrame = true;
text3->text.angle = 90;
auto box4 = canvas->Draw<RBox>(
RPadPos(80_user - 20_px, 80_user - 20_px),
RPadPos(80_user + 20_px, 80_user + 20_px));
box4->clipping = true;
box4->onFrame = true;
auto line4 = canvas->Draw<RLine>(
RPadPos(20_user, 20_user),
RPadPos(80_user, 80_user));
line4->clipping = true;
line4->onFrame = true;
auto text4 = canvas->Draw<RText>(
RPadPos(20_user, 20_user),
"clipping on");
text4->onFrame = true;
text4->clipping = true;
auto box5 = canvas->Draw<RBox>(
RPadPos(80_user - 20_px, 20_user - 20_px),
RPadPos(80_user + 20_px, 20_user + 20_px));
box5->onFrame = true;
auto line5 = canvas->Draw<RLine>(
RPadPos(20_user, 80_user),
RPadPos(80_user, 20_user));
line5->onFrame = true;
auto text5 = canvas->Draw<RText>(
RPadPos(20_user, 80_user),
"clipping off");
text5->onFrame = true;
canvas->UseStyle(rframe_style);
canvas->Show();
}
static std::shared_ptr< RCanvas > Create(const std::string &title)
Create new canvas instance.
static R__DLLEXPORT constexpr RGB_t kRed
static R__DLLEXPORT constexpr RGB_t kYellow
static R__DLLEXPORT constexpr RGB_t kGreen
static R__DLLEXPORT constexpr RGB_t kBlue
A position (horizontal and vertical) in a RPad.
static std::shared_ptr< RStyle > Parse(const std::string &css_code)
Parse CSS code and returns std::shared_ptr<RStyle> when successful.
Namespace for ROOT features in testing.