#include "TestWidgetEmptyPlot.h" #include #include #include #include TestWidgetEmptyPlot::TestWidgetEmptyPlot(QWidget *parent) : QWidget(parent) { #define NEMPTY 500 JKQTPlotter* plotEmpty=new JKQTPlotter(true, this); JKQTPXYLineGraph* efunc=new JKQTPXYLineGraph(plotEmpty->getPlotter()); double xef[NEMPTY], efy[NEMPTY]; for (int i=0; iset_xColumn(plotEmpty->getDatastore()->addCopiedColumn(xef, NEMPTY, "x")); efunc->set_yColumn(plotEmpty->getDatastore()->addCopiedColumn(efy, NEMPTY, "y")); plotEmpty->addGraph(efunc); plotEmpty->getYAxis()->set_logAxis(true); plotEmpty->zoomToFit(); plotEmpty->setY(0,0); }