Files
Upsilon/apps/statistics/box_axis_view.cpp
2020-03-11 19:12:20 +01:00

16 lines
421 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);
}
}