|
| Plot1D () |
|
virtual bool | isEmpty () const |
|
virtual PlotBase * | clone () const |
|
void | setData (const std::vector< std::pair< float, float > > &v) |
| Set the plot data from a pair and symmetric Y error. More...
|
|
void | setData (const std::vector< std::pair< float, float > > &v, const std::vector< float > &symYErr) |
|
void | setData (const std::vector< float > &vX, const std::vector< float > &vY) |
| Set the plot data from two vectors and symmetric Y error. More...
|
|
void | setData (const std::vector< float > &vX, const std::vector< float > &vY, const std::vector< float > &symYErr) |
|
void | moveRegion (unsigned int region, unsigned int method, float newPos) |
| Move a region to a new location. More...
|
|
virtual void | drawPlot (mglGraph *graph) const |
|
void | drawRegions (mglGraph *graph, const mglPoint &min, const mglPoint &max) const |
|
void | getRawData (std::vector< std::vector< float > > &rawData, std::vector< std::string > &labels) const |
| Retrieve the raw data associated with the currently visible plots. More...
|
|
bool | getRegionIdAtPosition (float x, float y, unsigned int &id) const |
| Retrieve the ID of the non-overlapping region in X-Y space. More...
|
|
void | getRegion (unsigned int id, PlotRegion &r) const |
| Retrieve a region using its ID. More...
|
|
void | moveRegion (unsigned int regionId, unsigned int method, float newX, float newY) const |
| Pass the region movement information to the parent filter object. More...
|
|
void | findRegionLimit (unsigned int regionId, unsigned int movementType, float &limitX, float &limitY) const |
|
bool | wantLogPlot () const |
|
void | setLogarithmic (bool p) |
|
float | getSmallestNonzero () const |
|
void | setErrMode (PLOT_ERROR newErrMode) |
|
| PlotBase () |
|
virtual | ~PlotBase () |
|
unsigned int | getType () const |
|
unsigned int | getMode () const |
|
virtual void | getBounds (float &xMin, float &xMax, float &yMin, float &yMax) const |
| Return the true data bounds for this plot. More...
|
|
void | setStrings (const std::string &x, const std::string &y, const std::string &t) |
|
void | setColour (float rNew, float gNew, float bNew) |
|
void | setTraceStyle (unsigned int newStyle) |
|
std::string | getXLabel () const |
|
std::string | getTitle () const |
|
std::string | getYLabel () const |
|
unsigned int | getPlotMode () const |
|
void | setPlotMode (unsigned int newMode) |
|
void | getColour (float &r, float &g, float &b) const |
|
|
float | minX |
| Bounding box for plot. More...
|
|
float | maxX |
|
float | minY |
|
float | maxY |
|
bool | visible |
| Is trace visible? More...
|
|
bool | titleAsRawDataLabel |
| Use the plot title for Y data label when exporting raw data. More...
|
|
const void * | parentObject |
| Pointer to some constant object that generated this plot. More...
|
|
unsigned int | parentPlotIndex |
| integer to show which of the n plots that the parent generated More...
|
|
RegionGroup | regionGroup |
|
void | copyBase (PlotBase *target) const |
|
static void | computeDataBounds (const std::vector< float > &d, float &minV, float &maxV) |
|
static void | computeDataBounds (const std::vector< float > &d, const std::vector< float > &errorBar, float &minV, float &maxV) |
|
static void | computeDataBounds (const std::vector< std::pair< float, float > > &d, float &minVx, float &maxVx, float &minVy, float &maxVy) |
|
unsigned int | plotMode |
| Type of plot. More...
|
|
std::string | xLabel |
| xaxis label More...
|
|
std::string | yLabel |
| y axis label More...
|
|
std::string | title |
| Plot title. More...
|
|
float | r |
|
float | g |
|
float | b |
|
unsigned int | traceStyle |
|