Как построить значения, используя qtCustomplot - PullRequest
0 голосов
/ 02 мая 2019

Я использую QT с Visual Studio. когда я пишу этот код - он ничего не отображает. Он показывает только фон графика без графика.

QCustomPlot plot;
QVector<double> x(101), y(101); // initialize with entries 0..100
for (int i = 0; i < 101; ++i)
{

    x[i] = i / 50.0 - 1; // x goes from -1 to 1
    y[i] = x[i] * x[i]; // let's plot a quadratic function
}
// create graph and assign data to it:
plot.addGraph();
plot.graph(0)->setData(x, y);
// give the axes some labels:
plot.xAxis->setLabel("x");
plot.yAxis->setLabel("y");
// set axes ranges, so we see all data:
plot.xAxis->setRange(-1, 1);
plot.yAxis->setRange(0, 1);
plot.replot();

enter image description here

...