Files
Upsilon/apps/statistics/box_axis_view.cpp
2022-02-11 18:43:50 +01:00

16 lines
423 B
C++

#include "box_axis_view.h"
#include <assert.h>
using namespace Shared;
namespace Statistics {
void BoxAxisView::drawRect(KDContext * ctx, KDRect rect) const {
ctx->fillRect(rect, *Palette::BackgroundHard);
KDRect lineRect = KDRect(0, k_axisMargin, bounds().width(), 1);
ctx->fillRect(lineRect, *Palette::PrimaryText);
drawLabelsAndGraduations(ctx, rect, Axis::Horizontal, false, false, true, k_axisMargin);
}
}