2016-11-28 6 views
0

ある座標平面でy = constのようなグラフィックを作成したいと思います。コードがあります:QtCustomPlotグラフィックスが表示されない

TimeDiagram::TimeDiagram(QWidget *parent) : 
    QMainWindow(parent), 
    ui(new Ui::TimeDiagram) 
{ 
    ui->setupUi(this); 
    wGraphic = new QCustomPlot(); 
    ui->verticalLayout->addWidget(wGraphic); 

    int max_x=10; 
    int max_y=10; 

    QVector <QCPCurve> vecOfLines; 

    for(int i=0; i < numOfLines;++i) 
    { 
     QVector<double> x(2), y(2); 
     x[0]=0; 
     x[1]=max_x; 
     y[0]= max_y/numOfLines +i+1; 
     y[1]= max_y/numOfLines +i+1; 
     wGraphic->addGraph(wGraphic->xAxis, wGraphic->yAxis); 
     wGraphic->graph(i)->setData(x,y); 
    } 
    wGraphic->replot(); 
} 

悲しいことに、座標面だけが表示されますが、行はありません。手伝って頂けますか?

答えて

0

各データセットに対してベクトルxとyを作成する必要があります。

QVector<double> *x, *y; 
for(int i=0; i < numOfLines;++i) 
{  
    x = new QVector<double>; 
    y = new QVector<double>; 
    x->append(0); 
    x->append(max_x); 
    y->append(max_y/numOfLines +i+1); 
    y->append(max_y/numOfLines +i+1); 
    wGraphic->addGraph(wGraphic->xAxis, wGraphic->yAxis); 
    wGraphic->graph(i)->setData(*x,*y); 
} 
関連する問題