mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5577 Multi Plot : Add attribute for setting tick mark count along x-axis
This commit is contained in:
@@ -15,8 +15,11 @@
|
||||
// for more details.
|
||||
//
|
||||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "cafAppEnum.h"
|
||||
|
||||
class RimPlotAxisPropertiesInterface
|
||||
{
|
||||
public:
|
||||
@@ -26,6 +29,14 @@ public:
|
||||
AXIS_TITLE_END
|
||||
};
|
||||
|
||||
enum class LegendTickmarkCount
|
||||
{
|
||||
TICKMARK_FEW,
|
||||
TICKMARK_DEFAULT,
|
||||
TICKMARK_MANY,
|
||||
};
|
||||
using LegendTickmarkCountEnum = caf::AppEnum<LegendTickmarkCount>;
|
||||
|
||||
public:
|
||||
virtual AxisTitlePositionType titlePosition() const = 0;
|
||||
virtual int titleFontSize() const = 0;
|
||||
|
||||
Reference in New Issue
Block a user