#include "TestWidgetEmptyPlot.h" #include #include #include #include #include "jkqtplotter/graphs/jkqtpscatter.h" 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; isetXColumn(plotEmpty->getDatastore()->addCopiedColumn(xef, NEMPTY, "x")); efunc->setYColumn(plotEmpty->getDatastore()->addCopiedColumn(efy, NEMPTY, "y")); plotEmpty->addGraph(efunc); plotEmpty->getYAxis()->setLogAxis(true); plotEmpty->zoomToFit(); plotEmpty->setY(0,0); }