QwtPlotScaleItem(3) | Qwt User's Guide | QwtPlotScaleItem(3) |
QwtPlotScaleItem -
#include <qwt_plot_scaleitem.h>
Inherits QwtPlotItem.
QwtPlotScaleItem
(QwtScaleDraw::Alignment=QwtScaleDraw::BottomScale, const double
pos=0.0)
virtual ~QwtPlotScaleItem ()
int borderDistance () const
virtual void draw (QPainter *p, const QwtScaleMap &xMap,
const QwtScaleMap &yMap, const QRect &rect) const
QFont font () const
bool isScaleDivFromAxis () const
QPalette palette () const
double position () const
virtual int rtti () const
const QwtScaleDiv & scaleDiv () const
const QwtScaleDraw * scaleDraw () const
QwtScaleDraw * scaleDraw ()
void setAlignment (QwtScaleDraw::Alignment)
void setBorderDistance (int numPixels)
void setFont (const QFont &)
void setPalette (const QPalette &)
void setPosition (double pos)
void setScaleDiv (const QwtScaleDiv &)
void setScaleDivFromAxis (bool on)
void setScaleDraw (QwtScaleDraw *)
virtual void updateScaleDiv (const QwtScaleDiv &, const
QwtScaleDiv &)
A class which draws a scale inside the plot canvas.
QwtPlotScaleItem can be used to draw an axis inside the plot canvas. It might by synchronized to one of the axis of the plot, but can also display its own ticks and labels.
It is allowed to synchronize the scale item with a disabled axis. In plots with vertical and horizontal scale items, it might be necessary to remove ticks at the intersections, by overloading updateScaleDiv().
The scale might be at a specific position (f.e 0.0) or it might be aligned to a canvas border.
Example
QwtPlotScaleItem *scaleItem =
new QwtPlotScaleItem(QwtScaleDraw::RightScale, 0.0); scaleItem->setFont(plot->axisWidget(QwtPlot::yLeft)->font()); scaleItem->attach(plot); plot->enableAxis(QwtPlot::yLeft, false);
Constructor for scale item at the position pos. Parameters:
See also:
Returns:
See also:
Returns:
See also:
Returns:
See also:
Returns:
See also:
Returns:
See also:
Returns:
Reimplemented from QwtPlotItem.
Returns:
Returns:
See also:
Returns:
See also:
Change the alignment of the scale
The alignment sets the orientation of the scale and the position of the ticks:
For horizontal scales the position corresponds to QwtPlotItem::yAxis(), otherwise to QwtPlotItem::xAxis().
See also:
Align the scale to the canvas. If distance is >= 0 the scale will be aligned to a border of the contents rect of the canvas. If alignment() is QwtScaleDraw::LeftScale, the scale will be aligned to the right border, if it is QwtScaleDraw::TopScale it will be aligned to the bottom (and vice versa),
If distance is < 0 the scale will be at the position().
Parameters:
See also:
Change the tick label font
See also:
Set the palette
See also:
Change the position of the scale
The position is interpreted as y value for horizontal axes and as x value for vertical axes.
The border distance is set to -1.
Parameters:
See also:
Assign a scale division. When assigning a scaleDiv the scale division won't be synchronized with the corresponding axis anymore.
Parameters:
See also:
Enable/Disable the synchronization of the scale division with the corresponding axis.
Parameters:
See also:
Set a scale draw. Parameters:
The main use case for replacing the default QwtScaleDraw is to overload QwtAbstractScaleDraw::label, to replace or swallow tick labels.
See also:
Update the item to changes of the axes scale division. In case of isScaleDivFromAxis(), the scale draw is synchronized to the correspond axis.
Parameters:
See also:
Reimplemented from QwtPlotItem.
Generated automatically by Doxygen for Qwt User's Guide from the source code.
Tue Nov 20 2012 | Version 5.2.3 |