mirror of
https://github.com/aportelli/LatAnalyze.git
synced 2025-12-18 07:34:39 +00:00
Merge branch 'develop' into feature/reorg
This commit is contained in:
@@ -189,6 +189,7 @@ struct PlotOptions
|
||||
Range scale[2];
|
||||
std::string label[2];
|
||||
std::string lineColor;
|
||||
int lineWidth;
|
||||
std::vector<std::string> palette;
|
||||
};
|
||||
|
||||
@@ -241,6 +242,19 @@ private:
|
||||
const std::string color_;
|
||||
};
|
||||
|
||||
class LineWidth: public PlotModifier
|
||||
{
|
||||
public:
|
||||
// constructor
|
||||
explicit LineWidth(const unsigned int width);
|
||||
// destructor
|
||||
virtual ~LineWidth(void) = default;
|
||||
// modifier
|
||||
virtual void operator()(PlotOptions &option) const;
|
||||
private:
|
||||
const unsigned width_;
|
||||
};
|
||||
|
||||
class LogScale: public PlotModifier
|
||||
{
|
||||
public:
|
||||
|
||||
Reference in New Issue
Block a user