mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Improve Grid Statistics Plot UI (#9831)
- Set default frequency enum to relative frequency [%] - Set current view selected in filter by 3D view visibility by default - Add labels for statistics data - Add UI to change number of bins in histogram - Add control of font size of axis values and axis titles
This commit is contained in:
@@ -36,6 +36,9 @@ public:
|
||||
|
||||
void clearAllStatistics();
|
||||
|
||||
static size_t defaultNumBins();
|
||||
void setNumBins( size_t numBins );
|
||||
|
||||
void minMaxCellScalarValues( double& min, double& max );
|
||||
void minMaxCellScalarValues( size_t timeStepIndex, double& min, double& max );
|
||||
|
||||
@@ -114,8 +117,8 @@ private:
|
||||
std::vector<int> m_uniqueValues;
|
||||
};
|
||||
|
||||
StatisticsValues m_statsAllTimesteps;
|
||||
std::vector<StatisticsValues> m_statsPrTs;
|
||||
|
||||
StatisticsValues m_statsAllTimesteps;
|
||||
std::vector<StatisticsValues> m_statsPrTs;
|
||||
cvf::ref<RigStatisticsCalculator> m_statisticsCalculator;
|
||||
size_t m_numBins;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user