mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 00:37:25 +01:00
[Fix] Fix conflicts
This commit is contained in:
@@ -8,10 +8,9 @@ using namespace Shared;
|
||||
namespace Statistics {
|
||||
|
||||
HistogramView::HistogramView(HistogramController * controller, Store * store, int series, Shared::BannerView * bannerView, KDColor selectedHistogramColor, KDColor notSelectedHistogramColor, KDColor selectedBarColor) :
|
||||
CurveView(store, nullptr, bannerView, nullptr),
|
||||
HorizontallyLabeledCurveView(store, nullptr, bannerView, nullptr),
|
||||
m_controller(controller),
|
||||
m_store(store),
|
||||
m_labels{},
|
||||
m_highlightedBarStart(NAN),
|
||||
m_highlightedBarEnd(NAN),
|
||||
m_series(series),
|
||||
@@ -63,10 +62,6 @@ void HistogramView::setHighlight(float start, float end) {
|
||||
}
|
||||
}
|
||||
|
||||
char * HistogramView::label(Axis axis, int index) const {
|
||||
return axis == Axis::Vertical ? nullptr : (char *)m_labels[index];
|
||||
}
|
||||
|
||||
float HistogramView::EvaluateHistogramAtAbscissa(float abscissa, void * model, void * context) {
|
||||
Store * store = (Store *)model;
|
||||
float totalSize = ((float *)context)[0];
|
||||
|
||||
Reference in New Issue
Block a user