Russian Qt Forum

Qt => Вопросы новичков => Тема начата: demaker от Март 29, 2013, 11:32



Название: QWT
Отправлено: demaker от Март 29, 2013, 11:32
Скажите, а можно возле графиков, выводить текст?
Если, да то как?


Название: Re: QWT
Отправлено: demaker от Март 29, 2013, 15:51
Код:

QwtPlotMarker *mX = new QwtPlotMarker();
    mX->setLabel(QString::fromLatin1("base marker"));
    mX->setLabelAlignment(Qt::AlignLeft | Qt::AlignBottom);
    mX->setLabelOrientation(Qt::Vertical);
    mX->setLineStyle(QwtPlotMarker::VLine);
    mX->setLinePen(QPen(Qt::red, 3, Qt::SolidLine));
    mX->setXValue(50000);
    mX->attach(this);