15 #include "CeePlot2d/Base.h" 17 #include "CeeCore/Color3f.h" 18 #include "CeeCore/Str.h" 20 #include "CeeVisualization/Font.h" 36 void setAxisColor(
const Color3f& color);
38 Str xAxisTitle()
const;
39 void setXAxisTitle(
const Str& title);
41 Str yAxisTitle()
const;
42 void setYAxisTitle(
const Str& title);
44 bool drawGridLines()
const;
45 void setDrawGridLines(
bool drawGridLines);
47 bool showRangeInTitle()
const;
48 void setShowRangeInTitle(
bool show);
51 void setGridLinesColor(
const Color3f& color);
53 bool useAutoRange()
const;
54 void setUseAutoRange(
bool autoRange);
56 double xAxisRangeMinimum()
const;
57 double xAxisRangeMaximum()
const;
58 void setXAxisRange(
double min,
double max);
60 double yAxisRangeMinimum()
const;
61 double yAxisRangeMaximum()
const;
62 void setYAxisRange(
double min,
double max);
64 void setYAxisUseLogarithmicScale(
bool useLog);
65 bool yAxisUseLogarithmicScale()
const;
66 void setXAxisUseLogarithmicScale(
bool useLog);
67 bool xAxisUseLogarithmicScale()
const;
69 void forceRangeUpdate();
Namespace cee contains all functionality and structures under the Core component. ...
Definition: AppComponent.cpp:26
A general unicode based string class.
Definition: Str.h:28
Class for storing an RGB color triplet.
Definition: Color3f.h:25
Overlay item with basic 2D plotting.
Definition: OverlayPlot.h:38
Axis settings for an OverlayPlot object.
Definition: AxisSettings.h:30