IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QDateTimeAxis Class

The QDateTimeAxis class adds dates and times to a chart's axis.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QDateTimeAxis Class

  • Header: QDateTimeAxis

  • Inherited By:

  • Instantiated By: qml-qtcharts-datetimeaxis.xml

  • Inherits: QAbstractAxis

Detailed Description

QDateTimeAxis can be set up to show an axis line with tick marks, grid lines, and shades. The labels can be configured by setting an appropriate DateTime format. QDateTimeAxis works correctly with dates from 4714 BCE to 287396 CE. For other limitiations related to QDateTime, see QDateTime documentation.

QDateTimeAxis is disabled on platforms that define qreal as float.

Image non disponible

QDateTimeAxis can be used with any QXYSeries. To add a data point to the series, QDateTime::toMSecsSinceEpoch() is used:

 
Sélectionnez
QLineSeries *series = new QLineSeries;

QDateTime xValue;
xValue.setDate(QDate(2012, 1 , 18));
xValue.setTime(QTime(9, 34));
qreal yValue = 12;
series->append(xValue.toMSecsSinceEpoch(), yValue);

xValue.setDate(QDate(2013, 5 , 11));
xValue.setTime(QTime(11, 14));
qreal yValue = 22;
series->append(xValue.toMSecsSinceEpoch(), yValue);

The following code snippet illustrates adding the series to the chart and setting up QDateTimeAxis:

 
Sélectionnez
QChartView *chartView = new QChartView;
chartView->chart()->addSeries(series);

// ...
QDateTimeAxis *axisX = new QDateTimeAxis;
axisX->setFormat("dd-MM-yyyy h:mm");
chartView->chart()->setAxisX(axisX, series);

Property Documentation

 

format : QString

This property holds the format string that is used when creating the label for the axis out of a QDateTime object.

See QDateTime documentation for information on how the string should be defined.

Access functions:

  • format() const

  • void setFormat( format)

Notifier signal:

See Also

See also QChart::locale

max : QDateTime

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:

  • max() const

  • void setMax( max)

Notifier signal:

min : QDateTime

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:

  • min() const

  • void setMin( min)

Notifier signal:

tickCount : int

This property holds the number of tick marks on the axis.

Access functions:

Notifier signal:

Member Function Documentation

 

[explicit] QDateTimeAxis::QDateTimeAxis(QObject *parent = nullptr)

Constructs an axis object that is a child of parent.

[virtual] QDateTimeAxis::~QDateTimeAxis()

Destroys the object.

void QDateTimeAxis::formatChanged(QString format)

This signal is emitted when the format of the axis changes.

Notifier signal for property format.

void QDateTimeAxis::maxChanged(QDateTime max)

This signal is emitted when the maximum value of the axis, specified by max, changes.

Notifier signal for property max.

void QDateTimeAxis::minChanged(QDateTime min)

This signal is emitted when the minimum value of the axis, specified by min, changes.

Notifier signal for property min.

void QDateTimeAxis::rangeChanged(QDateTime min, QDateTime max)

This signal is emitted when the minimum or maximum value of the axis, specified by min and max, changes.

void QDateTimeAxis::setRange(QDateTime min, QDateTime max)

Sets the range on the axis from min to max. If min is greater than max, this function returns without making any changes.

void QDateTimeAxis::setTickCount(int count)

Sets the number of tick marks on the axis to count.

Setter function for property tickCount.

See Also

See also tickCount()

int QDateTimeAxis::tickCount() const

Returns the number of tick marks on the axis.

Getter function for property tickCount.

See Also

See also setTickCount()

void QDateTimeAxis::tickCountChanged(int tickCount)

This signal is emitted when the number of tick marks on the axis, specified by tickCount, changes.

Notifier signal for property tickCount.

[override virtual] QAbstractAxis::AxisType QDateTimeAxis::type() const

Reimplements: QAbstractAxis::type() const.

Returns the type of the axis.

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+