- class QValueAxis#
The
QValueAxis
class adds values to a chart’s axes. More…Inherited by:
QCategoryAxis
Synopsis#
Properties#
labelFormatᅟ
- Label format of the axismaxᅟ
- Maximum value on the axisminᅟ
- Minimum value on the axisminorTickCountᅟ
- Number of minor tick marks on the axis. This indicates how many grid lines are drawn between major ticks on the chart. Labels are not drawn for minor ticks. The default value is 0tickAnchorᅟ
- Base value where the dynamically placed tick marks and labels are started fromtickCountᅟ
- Number of tick marks on the axis. This indicates how many grid lines are drawn on the chart. The default value is 5, and the number cannot be less than 2tickIntervalᅟ
- Interval between dynamically placed tick marks and labelstickTypeᅟ
- Positioning method of tick and labels
Methods#
def
__init__()
def
labelFormat()
def
max()
def
min()
def
minorTickCount()
def
setLabelFormat()
def
setMax()
def
setMin()
def
setRange()
def
setTickAnchor()
def
setTickCount()
def
setTickType()
def
tickAnchor()
def
tickCount()
def
tickInterval()
def
tickType()
Slots#
Signals#
def
maxChanged()
def
minChanged()
def
rangeChanged()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
Detailed Description#
A value axis can be set up to show an axis line with tick marks, grid lines, and shades. The values on the axis are drawn at the positions of tick marks.
The following example code illustrates how to use the
QValueAxis
class:QChartView *chartView = new QChartView; QLineSeries *series = new QLineSeries; // ... chartView->chart()->addSeries(series); QValueAxis *axisX = new QValueAxis; axisX->setRange(10, 20.5); axisX->setTickCount(10); axisX->setLabelFormat("%.2f"); chartView->chart()->setAxisX(axisX, series);
- class TickType#
This enum describes how the ticks and labels are positioned on the axis.
Constant
Description
QValueAxis.TicksDynamic
Ticks are placed according to
tickAnchor
andtickInterval
values.QValueAxis.TicksFixed
Ticks are placed evenly across the axis range. The
tickCount
value specifies the number of ticks.
Note
Properties can be used directly when
from __feature__ import true_property
is used or via accessor functions otherwise.- property labelFormatᅟ: str#
This property holds The label format of the axis..
The format string supports the following conversion specifiers, length modifiers, and flags provided by
printf()
in the standard C++ library: d, i, o, x, X, f, F, e, E, g, G, c.If
localizeNumbers
istrue
, the supported specifiers are limited to: d, e, E, f, g, G, and i. Also, only the precision modifier is supported. The rest of the formatting comes from the default QLocale of the application.See also
asprintf()
- Access functions:
- property maxᅟ: float#
This property holds The maximum value on the axis..
When setting this property, the minimum value is adjusted if necessary, to ensure that the range remains valid.
- Access functions:
Signal
maxChanged()
- property minᅟ: float#
This property holds The minimum value on the axis..
When setting this property, the maximum value is adjusted if necessary, to ensure that the range remains valid.
- Access functions:
Signal
minChanged()
- property minorTickCountᅟ: int#
This property holds The number of minor tick marks on the axis. This indicates how many grid lines are drawn between major ticks on the chart. Labels are not drawn for minor ticks. The default value is 0..
- Access functions:
- property tickAnchorᅟ: float#
This property holds The base value where the dynamically placed tick marks and labels are started from..
- Access functions:
- property tickCountᅟ: int#
This property holds The number of tick marks on the axis. This indicates how many grid lines are drawn on the chart. The default value is 5, and the number cannot be less than 2..
- Access functions:
- property tickIntervalᅟ: float#
This property holds The interval between dynamically placed tick marks and labels..
- Access functions:
- property tickTypeᅟ: QValueAxis.TickType#
This property holds The positioning method of tick and labels..
- Access functions:
Constructs an axis object that is a child of
parent
.- applyNiceNumbers()#
Modifies the current range and number of tick marks on the axis to look nice. The algorithm considers numbers that can be expressed as a form of 1*10^n, 2* 10^n, or 5*10^n to be nice numbers. These numbers are used for setting spacing for the tick marks.
See also
- labelFormat()#
- Return type:
str
See also
Getter of property
labelFormatᅟ
.- labelFormatChanged(format)#
- Parameters:
format – str
This signal is emitted when the
format
of axis labels changes.Notification signal of property
labelFormatᅟ
.Getter of property
maxᅟ
.- maxChanged(max)#
- Parameters:
max – float
This signal is emitted when the maximum value of the axis, specified by
max
, changes.Notification signal of property
maxᅟ
.Getter of property
minᅟ
.- minChanged(min)#
- Parameters:
min – float
This signal is emitted when the minimum value of the axis, specified by
min
, changes.Notification signal of property
minᅟ
.- minorTickCount()#
- Return type:
int
See also
Getter of property
minorTickCountᅟ
.- minorTickCountChanged(tickCount)#
- Parameters:
tickCount – int
This signal is emitted when the number of minor tick marks on the axis, specified by
minorTickCount
, changes.Notification signal of property
minorTickCountᅟ
.- rangeChanged(min, max)#
- Parameters:
min – float
max – float
This signal is emitted when the minimum or maximum value of the axis, specified by
min
andmax
, changes.- setLabelFormat(format)#
- Parameters:
format – str
See also
Setter of property
labelFormatᅟ
.Setter of property
maxᅟ
.Setter of property
minᅟ
.- setMinorTickCount(count)#
- Parameters:
count – int
See also
Setter of property
minorTickCountᅟ
.- setRange(min, max)#
- Parameters:
min – float
max – float
Sets the range from
min
tomax
on the axis. Ifmin
is greater thanmax
, this function returns without making any changes.- setTickAnchor(anchor)#
- Parameters:
anchor – float
See also
Setter of property
tickAnchorᅟ
.- setTickCount(count)#
- Parameters:
count – int
See also
Setter of property
tickCountᅟ
.- setTickInterval(insterval)#
- Parameters:
insterval – float
See also
Setter of property
tickIntervalᅟ
.- setTickType(type)#
- Parameters:
type –
TickType
See also
Setter of property
tickTypeᅟ
.- tickAnchor()#
- Return type:
float
See also
Getter of property
tickAnchorᅟ
.- tickAnchorChanged(anchor)#
- Parameters:
anchor – float
Notification signal of property
tickAnchorᅟ
.- tickCount()#
- Return type:
int
See also
Getter of property
tickCountᅟ
.- tickCountChanged(tickCount)#
- Parameters:
tickCount – int
This signal is emitted when the number of tick marks on the axis, specified by
tickCount
, changes.Notification signal of property
tickCountᅟ
.- tickInterval()#
- Return type:
float
See also
Getter of property
tickIntervalᅟ
.- tickIntervalChanged(interval)#
- Parameters:
interval – float
Notification signal of property
tickIntervalᅟ
.- tickType()#
- Return type:
TickType
See also
Getter of property
tickTypeᅟ
.- tickTypeChanged(type)#
- Parameters:
type –
TickType
Notification signal of property
tickTypeᅟ
.