|
| void | setWxPlotType (const WXPLOT_TYPE wxPlotType) |
| | Set the plot type selection.
|
| |
| void | setRadius (const wxCoord radius) |
| | Set radius. Most used for circles e.g filling scatter plots.
|
| |
| void | fillCircles (const bool fillCircle) |
| | Fill circles if radius is applied if circiles are going to be filled with the same colour as they are drawn.
|
| |
| void | setData (const std::vector< std::vector< double > > &data2D) |
| | Set 2D data.
|
| |
| void | setData (const std::vector< double > &data1D) |
| | Set 1D data.
|
| |
| void | setPlotStartWidth (const wxCoord plotStartWidth) |
| | Set the left upper corner in X-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
|
| |
| void | setPlotStartHeight (const wxCoord plotStartHeight) |
| | Set the left upper corner in Y-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
|
| |
| void | setPlotEndWidth (const wxCoord plotEndWidth) |
| | Set the right upper corner in X-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
|
| |
| void | setPlotEndHeight (const wxCoord plotEndHeight) |
| | Set the right bottom corner in Y-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
|
| |
| void | setBinCount (const unsigned int binCount) |
| | Set the bin count for e.g. histogram.
|
| |
| void | setYlim (const double minY, const double maxY) |
| | Set the plot zoom limit in Y-axis.
|
| |
| void | drawType (wxDC &dc) |
| | This function draw the plot e.g line, bar, histogram, spline, scatter etc. inside in this rectangle.
|
| |
Here all the 2D plot types.
| void _2DType::setPlotEndHeight |
( |
const wxCoord | plotEndHeight | ) |
|
Set the right bottom corner in Y-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
(plotStartWidth, plotEndHeight) --------------------------------------------— (plotEndWidth, plotEndHeight)
- Parameters
-
| plotEndHeight | End height is at the end of Y-axis. |
| void _2DType::setPlotEndWidth |
( |
const wxCoord | plotEndWidth | ) |
|
Set the right upper corner in X-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
(plotStartWidth, plotEndHeight) --------------------------------------------— (plotEndWidth, plotEndHeight)
- Parameters
-
| plotEndWidth | End width is at the end of X-axis. |
| void _2DType::setPlotStartHeight |
( |
const wxCoord | plotStartHeight | ) |
|
Set the left upper corner in Y-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
(plotStartWidth, plotEndHeight) --------------------------------------------— (plotEndWidth, plotEndHeight)
- Parameters
-
| plotStartHeight | Start height is at the start of Y-axis. |
| void _2DType::setPlotStartWidth |
( |
const wxCoord | plotStartWidth | ) |
|
Set the left upper corner in X-axis. Inside this rectangle, the plot is drawn. NOTE: This value is recalculated since the plot figure is drawn! (plotStartWidth, plotStartHeight) --------------------------------------------— (plotEndWidth, plotStartHeight)
(plotStartWidth, plotEndHeight) --------------------------------------------— (plotEndWidth, plotEndHeight)
- Parameters
-
| plotStartWidth | Start width is at the start of X-axis. |