mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
663 lines
22 KiB
C++
663 lines
22 KiB
C++
/*
|
|
Copyright (c) 2008-2024 Jan W. Krieger (<jan@jkrieger.de>)
|
|
|
|
|
|
|
|
This software is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser General Public License (LGPL) as published by
|
|
the Free Software Foundation, either version 2.1 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU Lesser General Public License (LGPL) for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License (LGPL)
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
|
|
|
|
#include "jkqtplotter/graphs/jkqtpbarchart.h"
|
|
#include "jkqtplotter/jkqtpbaseplotter.h"
|
|
#include <stdlib.h>
|
|
#include <QDebug>
|
|
#include <iostream>
|
|
#include "jkqtplotter/jkqtptools.h"
|
|
#include "jkqtplotter/jkqtplotter.h"
|
|
|
|
#define SmallestGreaterZeroCompare_xvsgz() if ((xvsgz>10.0*DBL_MIN)&&((smallestGreaterZero<10.0*DBL_MIN) || (xvsgz<smallestGreaterZero))) smallestGreaterZero=xvsgz;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JKQTPBarVerticalGraph::JKQTPBarVerticalGraph(JKQTBasePlotter* parent):
|
|
JKQTPBarGraphBase(parent)
|
|
{
|
|
|
|
}
|
|
|
|
|
|
JKQTPBarVerticalGraph::JKQTPBarVerticalGraph(JKQTPlotter* parent):
|
|
JKQTPBarVerticalGraph(parent->getPlotter())
|
|
{
|
|
}
|
|
|
|
void JKQTPBarVerticalGraph::draw(JKQTPEnhancedPainter& painter) {
|
|
#ifdef JKQTBP_AUTOTIMER
|
|
JKQTPAutoOutputTimer jkaaot("JKQTPBarHorizontalGraph::draw");
|
|
#endif
|
|
if (parent==nullptr) return;
|
|
const JKQTPDatastore* datastore=parent->getDatastore();
|
|
if (datastore==nullptr) return;
|
|
|
|
drawErrorsBefore(painter);
|
|
|
|
const QPen p=getLinePenForRects(painter, parent);
|
|
const auto fillFunctor=std::bind(constructFillBrushFunctor(), std::placeholders::_1, std::placeholders::_2, std::ref(painter), this);
|
|
|
|
int imax=0;
|
|
int imin=0;
|
|
double left=-1e6;
|
|
double right=1e6;
|
|
bool firstXY=true;
|
|
if (getIndexRange(imin, imax)) {
|
|
painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
|
|
|
|
// double x0=transformX(0);
|
|
// if (getXAxis()->isLogAxis()) x0=transformX(getXAxis()->getMin());
|
|
double y0=transformY(0);
|
|
if (getYAxis()->isLogAxis()) y0=transformY(getYAxis()->getMin());
|
|
double delta=1;
|
|
double deltap=0;
|
|
double deltam=0;
|
|
intSortData();
|
|
const bool hasStackPar=hasStackParent();
|
|
for (int iii=imin; iii<imax; iii++) {
|
|
int i=qBound(imin, getDataIndex(iii), imax);
|
|
const double xv=datastore->get(static_cast<size_t>(xColumn),static_cast<size_t>(i));
|
|
const int sr=datastore->getNextLowerIndex(xColumn, i);
|
|
const int lr=datastore->getNextHigherIndex(xColumn, i);
|
|
const double yvdirect=datastore->get(static_cast<size_t>(yColumn),static_cast<size_t>(i));
|
|
double yv=yvdirect;
|
|
double yv0=y0;
|
|
if (!qFuzzyIsNull(getBaseline())) yv0=transformY(getBaseline());
|
|
if (hasStackPar) {
|
|
double stackLastY=getParentStackedMax(i);
|
|
const double yvold=yv;
|
|
yv0=transformY(stackLastY)-(getLineWidth());
|
|
yv=stackLastY+yvold;
|
|
}
|
|
if (sr<0 && lr<0) { // only one x-value
|
|
deltam=0.5;
|
|
deltap=0.5;
|
|
} else if (lr<0) { // the right-most x-value
|
|
deltap=deltam=fabs(xv-datastore->get(xColumn,sr))/2.0;
|
|
} else if (sr<0) { // the left-most x-value
|
|
deltam=deltap=fabs(datastore->get(xColumn,lr)-xv)/2.0;
|
|
} else {
|
|
deltam=fabs(xv-datastore->get(xColumn,sr))/2.0;
|
|
deltap=fabs(datastore->get(xColumn,lr)-xv)/2.0;
|
|
}
|
|
//std::cout<<iii<<", \t"<<i<<", \t"<<sr<<", \t"<<lr<<", \t"<<deltam<<", \t"<<deltap<<"\n\n";
|
|
delta=deltap+deltam;
|
|
|
|
if (JKQTPIsOKFloat(xv) && JKQTPIsOKFloat(yv)) {
|
|
const double x=transformX(xv+shift*delta-width*deltam);
|
|
double y=transformY(yv);
|
|
const double xx=transformX(xv+shift*delta+width*deltap);
|
|
double yy=yv0;
|
|
|
|
//std::cout<<"delta="<<delta<<" x="<<x<<" y="<<y<<" xx="<<xx<<" yy="<<yy<<std::endl;
|
|
bool swapped=false;
|
|
if (yy<y) { qSwap(y,yy); swapped=true; }
|
|
if (JKQTPIsOKFloat(x) && JKQTPIsOKFloat(xx) && JKQTPIsOKFloat(y) && JKQTPIsOKFloat(yy)) {
|
|
const QBrush b=fillFunctor(xv,yv);
|
|
painter.setBrush(b);
|
|
if (getFillMode()!=FillMode::SingleFilling) {
|
|
QPen pl=p;
|
|
pl.setColor(JKQTPGetDerivedColor(m_lineColorDerivationModeForSpecialFill,b.color()));
|
|
} else {
|
|
painter.setPen(p);
|
|
}
|
|
const QRectF r(QPointF(x, y), QPointF(xx, yy));
|
|
if (firstXY) {
|
|
left=r.left();
|
|
right=r.right();
|
|
} else {
|
|
left=qMin(left, r.left());
|
|
right=qMax(right, r.right());
|
|
}
|
|
firstXY=false;
|
|
if (usesCustomDrawFunctor()) {
|
|
if (m_customDrawFunctor) {
|
|
m_customDrawFunctor(painter, r, QPointF(xv,yv), Qt::Vertical, this);
|
|
}
|
|
} else {
|
|
const double rAtBaseline=parent->pt2px(painter, rectRadiusAtBaseline);
|
|
const double rAtValue=parent->pt2px(painter, rectRadiusAtValue);
|
|
//qDebug()<<"r="<<r<<", rectRadiusAtBaseline="<<rectRadiusAtBaseline<<", rectRadiusAtValue="<<rectRadiusAtValue<<", rAtBaseline="<<rAtBaseline<<", rAtValue="<<rAtValue;
|
|
if (rAtBaseline+rAtValue>=r.height()+2) {
|
|
//qDebug()<<"drawRect";
|
|
painter.drawRect(r);
|
|
} else {
|
|
//qDebug()<<"drawRoundRect swapped="<<swapped;
|
|
if (swapped) {
|
|
painter.drawComplexRoundedRect(r,rAtBaseline,rAtBaseline,rAtValue,rAtValue,Qt::AbsoluteSize);
|
|
} else {
|
|
painter.drawComplexRoundedRect(r,rAtValue,rAtValue,rAtBaseline,rAtBaseline,Qt::AbsoluteSize);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (getDrawBaseline() && left!=right && !hasStackParent()) {
|
|
painter.setPen(baselineStyle().getLinePen(painter, parent));
|
|
const double yb=transformY(getBaseline());
|
|
if (JKQTPIsOKFloat(yb)) painter.drawLine(left, yb, right, yb);
|
|
}
|
|
|
|
}
|
|
drawErrorsAfter(painter);
|
|
}
|
|
|
|
bool JKQTPBarVerticalGraph::getXMinMax(double& minx, double& maxx, double& smallestGreaterZero) {
|
|
return getPositionsMinMax(minx, maxx, smallestGreaterZero);
|
|
}
|
|
|
|
bool JKQTPBarVerticalGraph::getYMinMax(double& miny, double& maxy, double& smallestGreaterZero) {
|
|
return getValuesMinMax(miny, maxy, smallestGreaterZero);
|
|
}
|
|
|
|
|
|
bool JKQTPBarVerticalGraph::considerForAutoscaling(JKQTPBarGraphBase *other) const
|
|
{
|
|
return (dynamic_cast<JKQTPBarVerticalGraph*>(other)!=nullptr);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JKQTPBarHorizontalGraph::JKQTPBarHorizontalGraph(JKQTBasePlotter *parent):
|
|
JKQTPBarGraphBase(parent)
|
|
{
|
|
|
|
}
|
|
|
|
JKQTPBarHorizontalGraph::JKQTPBarHorizontalGraph(JKQTPlotter *parent):
|
|
JKQTPBarHorizontalGraph(parent->getPlotter())
|
|
{
|
|
|
|
}
|
|
|
|
|
|
int JKQTPBarHorizontalGraph::getKeyColumn() const
|
|
{
|
|
return yColumn;
|
|
}
|
|
|
|
int JKQTPBarHorizontalGraph::getValueColumn() const
|
|
{
|
|
return xColumn;
|
|
}
|
|
|
|
void JKQTPBarHorizontalGraph::setKeyColumn(int __value)
|
|
{
|
|
yColumn=__value;
|
|
}
|
|
|
|
void JKQTPBarHorizontalGraph::setValueColumn(int __value)
|
|
{
|
|
xColumn=__value;
|
|
}
|
|
|
|
bool JKQTPBarHorizontalGraph::considerForAutoscaling(JKQTPBarGraphBase *other) const
|
|
{
|
|
return (dynamic_cast<JKQTPBarHorizontalGraph*>(other)!=nullptr);
|
|
}
|
|
|
|
void JKQTPBarHorizontalGraph::draw(JKQTPEnhancedPainter& painter) {
|
|
#ifdef JKQTBP_AUTOTIMER
|
|
JKQTPAutoOutputTimer jkaaot("JKQTPBarVerticalGraph::draw");
|
|
#endif
|
|
if (parent==nullptr) return;
|
|
const JKQTPDatastore* datastore=parent->getDatastore();
|
|
if (datastore==nullptr) return;
|
|
|
|
drawErrorsBefore(painter);
|
|
|
|
const QPen p=getLinePenForRects(painter, parent);
|
|
const auto fillFunctor=std::bind(constructFillBrushFunctor(), std::placeholders::_1, std::placeholders::_2, std::ref(painter), this);
|
|
|
|
int imax=0;
|
|
int imin=0;
|
|
double top=0;
|
|
double bottom=0;
|
|
bool firstXY=true;
|
|
if (getIndexRange(imin, imax)) {
|
|
|
|
double x0=transformX(0);
|
|
if (getXAxis()->isLogAxis()) x0=transformX(getXAxis()->getMin());
|
|
// double y0=transformY(0);
|
|
// if (getYAxis()->isLogAxis()) y0=transformY(getYAxis()->getMin());
|
|
{
|
|
painter.save(); auto __finalpaint=JKQTPFinally([&painter]() {painter.restore();});
|
|
intSortData();
|
|
const bool hasStackPar=hasStackParent();
|
|
double delta=1;
|
|
double deltap=0;
|
|
double deltam=0;
|
|
for (int iii=imin; iii<imax; iii++) {
|
|
int i=qBound(imin, getDataIndex(iii), imax);
|
|
const double xvdirect=datastore->get(static_cast<size_t>(xColumn),static_cast<size_t>(i));
|
|
double xv=xvdirect;
|
|
double yv=datastore->get(static_cast<size_t>(yColumn),static_cast<size_t>(i));
|
|
int sr=datastore->getNextLowerIndex(yColumn, i);
|
|
int lr=datastore->getNextHigherIndex(yColumn, i);
|
|
double xv0=x0;
|
|
if (!qFuzzyIsNull(getBaseline())) xv0=transformX(getBaseline());
|
|
if (hasStackPar) {
|
|
double stackLastX=getParentStackedMax(i);
|
|
const double xvold=xv;
|
|
xv0=transformX(stackLastX)+(getLineWidth());
|
|
xv=stackLastX+xvold;
|
|
}
|
|
|
|
|
|
if (sr<0 && lr<0) { // only one y-value
|
|
deltam=0.5;
|
|
deltap=0.5;
|
|
} else if (lr<0) { // the right-most y-value
|
|
deltap=deltam=fabs(yv-datastore->get(yColumn,sr))/2.0;
|
|
} else if (sr<0) { // the left-most y-value
|
|
deltam=deltap=fabs(datastore->get(yColumn,lr)-yv)/2.0;
|
|
} else {
|
|
deltam=fabs(yv-datastore->get(yColumn,sr))/2.0;
|
|
deltap=fabs(datastore->get(yColumn,lr)-yv)/2.0;
|
|
}
|
|
delta=deltap+deltam;
|
|
|
|
if (JKQTPIsOKFloat(xv) && JKQTPIsOKFloat(yv)) {
|
|
double x=xv0;
|
|
if (!qFuzzyIsNull(getBaseline())) x=transformX(getBaseline());
|
|
double y=transformY(yv+shift*delta+width*deltap);
|
|
double xx=transformX(xv);
|
|
double yy=transformY(yv+shift*delta-width*deltam);
|
|
bool swapped=false;
|
|
if (x>xx) { qSwap(x,xx); swapped=true; }
|
|
//qDebug()<<"delta="<<delta<<" x="<<x<<" y="<<y<<" xx="<<xx<<" yy="<<yy;
|
|
//qDebug()<<"xv="<<xv<<" x0="<<x0<<" x="<<x<<"..."<<xx;
|
|
if (JKQTPIsOKFloat(x) && JKQTPIsOKFloat(xx) && JKQTPIsOKFloat(y) && JKQTPIsOKFloat(yy)) {
|
|
const QBrush b=fillFunctor(yv,xv);
|
|
painter.setBrush(b);
|
|
if (getFillMode()!=FillMode::SingleFilling) {
|
|
QPen pl=p;
|
|
pl.setColor(JKQTPGetDerivedColor(m_lineColorDerivationModeForSpecialFill,b.color()));
|
|
} else {
|
|
painter.setPen(p);
|
|
}
|
|
const QRectF r(QPointF(x, y), QPointF(xx, yy));
|
|
if (firstXY) {
|
|
top=r.top();
|
|
bottom=r.bottom();
|
|
} else {
|
|
top=qMin(top, r.top());
|
|
bottom=qMax(bottom, r.bottom());
|
|
}
|
|
firstXY=false;
|
|
if (usesCustomDrawFunctor()) {
|
|
if (m_customDrawFunctor) {
|
|
m_customDrawFunctor(painter, r, QPointF(xv,yv), Qt::Horizontal, this);
|
|
}
|
|
} else {
|
|
const double rAtBaseline=parent->pt2px(painter, rectRadiusAtBaseline);
|
|
const double rAtValue=parent->pt2px(painter, rectRadiusAtBaseline);
|
|
if (rAtBaseline+rAtValue>r.width()+2) {
|
|
painter.drawRect(r);
|
|
} else {
|
|
if (swapped) {
|
|
painter.drawComplexRoundedRect(r,rAtBaseline,rAtValue,rAtBaseline,rAtValue,Qt::AbsoluteSize);
|
|
} else {
|
|
painter.drawComplexRoundedRect(r,rAtValue,rAtBaseline,rAtValue,rAtBaseline,Qt::AbsoluteSize);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
if (getDrawBaseline() && top!=bottom && !hasStackParent()) {
|
|
painter.setPen(baselineStyle().getLinePen(painter, parent));
|
|
const double xb=transformX(getBaseline());
|
|
if (JKQTPIsOKFloat(xb)) painter.drawLine(xb,top,xb,bottom);
|
|
}
|
|
}
|
|
drawErrorsAfter(painter);
|
|
}
|
|
|
|
bool JKQTPBarHorizontalGraph::getXMinMax(double& minx, double& maxx, double& smallestGreaterZero) {
|
|
return getValuesMinMax(minx, maxx, smallestGreaterZero);
|
|
}
|
|
|
|
bool JKQTPBarHorizontalGraph::getYMinMax(double& miny, double& maxy, double& smallestGreaterZero) {
|
|
return getPositionsMinMax(miny, maxy, smallestGreaterZero);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
JKQTPBarHorizontalErrorGraph::JKQTPBarHorizontalErrorGraph(JKQTBasePlotter *parent):
|
|
JKQTPBarHorizontalGraph(parent)
|
|
{
|
|
setErrorColorFromGraphColor(getKeyLabelColor());
|
|
initErrorStyle(parent, parentPlotStyle, JKQTPPlotStyleType::Barchart);
|
|
}
|
|
|
|
JKQTPBarHorizontalErrorGraph::JKQTPBarHorizontalErrorGraph(JKQTPlotter *parent):
|
|
JKQTPBarHorizontalErrorGraph(parent->getPlotter())
|
|
{
|
|
|
|
}
|
|
|
|
bool JKQTPBarHorizontalErrorGraph::usesColumn(int c) const
|
|
{
|
|
return JKQTPBarHorizontalGraph::usesColumn(c)|| JKQTPXGraphErrors::errorUsesColumn(c);
|
|
}
|
|
|
|
bool JKQTPBarHorizontalErrorGraph::getXMinMax(double &minx, double &maxx, double &smallestGreaterZero)
|
|
{
|
|
if (xErrorColumn<0 || xErrorStyle==JKQTPNoError) {
|
|
return getMinMaxWithBaseline(xColumn, minx, maxx, smallestGreaterZero);
|
|
} else {
|
|
return getMinMaxWithErrorsAndBaseline(xColumn, xErrorColumn, xErrorColumnLower, xErrorSymmetric, minx, maxx, smallestGreaterZero);
|
|
}
|
|
}
|
|
|
|
void JKQTPBarHorizontalErrorGraph::drawErrorsAfter(JKQTPEnhancedPainter &painter)
|
|
{
|
|
if (sortData==JKQTPXYGraph::Unsorted) plotErrorIndicators(painter, parent, this, xColumn, yColumn, 0.0, shift);
|
|
else plotErrorIndicators(painter, parent, this, xColumn, yColumn, 0.0, shift, &sortedIndices);
|
|
}
|
|
|
|
|
|
|
|
int JKQTPBarHorizontalErrorGraph::getBarErrorColumn() const
|
|
{
|
|
return getXErrorColumn();
|
|
}
|
|
|
|
int JKQTPBarHorizontalErrorGraph::getBarLowerErrorColumn() const
|
|
{
|
|
return getXErrorColumnLower();
|
|
}
|
|
|
|
JKQTPErrorPlotstyle JKQTPBarHorizontalErrorGraph::getBarErrorStyle() const
|
|
{
|
|
return getXErrorStyle();
|
|
}
|
|
|
|
bool JKQTPBarHorizontalErrorGraph::getBarErrorSymmetric() const
|
|
{
|
|
return getXErrorSymmetric();
|
|
}
|
|
|
|
void JKQTPBarHorizontalErrorGraph::setBarErrorSymmetric(bool __value)
|
|
{
|
|
setXErrorSymmetric(__value);
|
|
}
|
|
|
|
void JKQTPBarHorizontalErrorGraph::setBarErrorStyle(JKQTPErrorPlotstyle __value)
|
|
{
|
|
setXErrorStyle(__value);
|
|
}
|
|
|
|
void JKQTPBarHorizontalErrorGraph::setBarErrorColumn(int column)
|
|
{
|
|
setXErrorColumn(column);
|
|
}
|
|
|
|
void JKQTPBarHorizontalErrorGraph::setBarErrorColumn(size_t column)
|
|
{
|
|
setXErrorColumn(static_cast<int>(column));
|
|
}
|
|
|
|
void JKQTPBarHorizontalErrorGraph::setBarLowerErrorColumn(int column)
|
|
{
|
|
setXErrorColumnLower(column);
|
|
}
|
|
|
|
void JKQTPBarHorizontalErrorGraph::setBarLowerErrorColumn(size_t column)
|
|
{
|
|
setXErrorColumnLower(static_cast<int>(column));
|
|
}
|
|
|
|
JKQTPBarVerticalErrorGraph::JKQTPBarVerticalErrorGraph(JKQTBasePlotter *parent):
|
|
JKQTPBarVerticalGraph(parent)
|
|
{
|
|
setErrorColorFromGraphColor(getKeyLabelColor());
|
|
initErrorStyle(parent, parentPlotStyle, JKQTPPlotStyleType::Barchart);
|
|
|
|
}
|
|
|
|
JKQTPBarVerticalErrorGraph::JKQTPBarVerticalErrorGraph(JKQTPlotter *parent):
|
|
JKQTPBarVerticalErrorGraph(parent->getPlotter())
|
|
{
|
|
|
|
}
|
|
|
|
bool JKQTPBarVerticalErrorGraph::usesColumn(int c) const
|
|
{
|
|
return JKQTPBarVerticalGraph::usesColumn(c)|| JKQTPYGraphErrors::errorUsesColumn(c);
|
|
}
|
|
|
|
bool JKQTPBarVerticalErrorGraph::getYMinMax(double &miny, double &maxy, double &smallestGreaterZero)
|
|
{
|
|
if (yErrorColumn<0 || yErrorStyle==JKQTPNoError) {
|
|
return getMinMaxWithBaseline(yColumn, miny, maxy, smallestGreaterZero);
|
|
} else {
|
|
return getMinMaxWithErrorsAndBaseline(yColumn, yErrorColumn, yErrorColumnLower, yErrorSymmetric, miny, maxy, smallestGreaterZero);
|
|
}
|
|
}
|
|
|
|
int JKQTPBarVerticalErrorGraph::getBarErrorColumn() const
|
|
{
|
|
return getYErrorColumn();
|
|
}
|
|
|
|
int JKQTPBarVerticalErrorGraph::getBarLowerErrorColumn() const
|
|
{
|
|
return getYErrorColumnLower();
|
|
}
|
|
|
|
JKQTPErrorPlotstyle JKQTPBarVerticalErrorGraph::getBarErrorStyle() const
|
|
{
|
|
return getYErrorStyle();
|
|
}
|
|
|
|
bool JKQTPBarVerticalErrorGraph::getBarErrorSymmetric() const
|
|
{
|
|
return getYErrorSymmetric();
|
|
}
|
|
|
|
void JKQTPBarVerticalErrorGraph::setBarErrorSymmetric(bool __value)
|
|
{
|
|
setYErrorSymmetric(__value);
|
|
}
|
|
|
|
void JKQTPBarVerticalErrorGraph::setBarErrorStyle(JKQTPErrorPlotstyle __value)
|
|
{
|
|
setYErrorStyle(__value);
|
|
}
|
|
|
|
void JKQTPBarVerticalErrorGraph::setBarErrorColumn(int column)
|
|
{
|
|
setYErrorColumn(column);
|
|
}
|
|
|
|
void JKQTPBarVerticalErrorGraph::setBarErrorColumn(size_t column)
|
|
{
|
|
setYErrorColumn(static_cast<int>(column));
|
|
}
|
|
|
|
void JKQTPBarVerticalErrorGraph::setBarLowerErrorColumn(int column)
|
|
{
|
|
setYErrorColumnLower(column);
|
|
}
|
|
|
|
void JKQTPBarVerticalErrorGraph::setBarLowerErrorColumn(size_t column)
|
|
{
|
|
setYErrorColumnLower(static_cast<int>(column));
|
|
}
|
|
|
|
void JKQTPBarVerticalErrorGraph::drawErrorsAfter(JKQTPEnhancedPainter &painter)
|
|
{
|
|
//plotErrorIndicators(painter, parent, this, xColumn, yColumn, shift, 0.0);
|
|
if (sortData==JKQTPXYGraph::Unsorted) plotErrorIndicators(painter, parent, this, xColumn, yColumn, shift, 0.0);
|
|
else plotErrorIndicators(painter, parent, this, xColumn, yColumn, shift, 0, &sortedIndices);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
JKQTPBarVerticalStackableGraph::JKQTPBarVerticalStackableGraph(JKQTBasePlotter *parent):
|
|
JKQTPBarVerticalGraph(parent), stackParent(nullptr)
|
|
{
|
|
|
|
}
|
|
|
|
JKQTPBarVerticalStackableGraph::JKQTPBarVerticalStackableGraph(JKQTPlotter *parent):
|
|
JKQTPBarVerticalStackableGraph(parent->getPlotter())
|
|
{
|
|
|
|
}
|
|
|
|
void JKQTPBarVerticalStackableGraph::stackUpon(JKQTPBarVerticalStackableGraph *parentGraph)
|
|
{
|
|
stackParent=parentGraph;
|
|
}
|
|
|
|
void JKQTPBarVerticalStackableGraph::dontStackUpon()
|
|
{
|
|
stackParent=nullptr;
|
|
}
|
|
|
|
double JKQTPBarVerticalStackableGraph::getParentStackedMax(int index) const
|
|
{
|
|
if (stackParent) {
|
|
return stackParent->getStackedMax(index);
|
|
} else {
|
|
return getBaseline();
|
|
}
|
|
}
|
|
|
|
bool JKQTPBarVerticalStackableGraph::hasStackParent() const
|
|
{
|
|
return stackParent!=nullptr;
|
|
}
|
|
|
|
const JKQTPBarVerticalStackableGraph *JKQTPBarVerticalStackableGraph::getStackParent() const
|
|
{
|
|
return stackParent;
|
|
}
|
|
|
|
JKQTPBarVerticalStackableGraph *JKQTPBarVerticalStackableGraph::getStackParent()
|
|
{
|
|
return stackParent;
|
|
}
|
|
|
|
double JKQTPBarVerticalStackableGraph::getStackedMax(int index) const
|
|
{
|
|
double height=0;
|
|
if (parent!=nullptr) {
|
|
JKQTPDatastore* datastore=parent->getDatastore();
|
|
height=datastore->get(static_cast<size_t>(yColumn),static_cast<size_t>(index));
|
|
}
|
|
if (stackParent==nullptr) {
|
|
return height;
|
|
} else {
|
|
return stackParent->getStackedMax(index)+height;
|
|
}
|
|
}
|
|
|
|
JKQTPBarHorizontalStackableGraph::JKQTPBarHorizontalStackableGraph(JKQTBasePlotter *parent):
|
|
JKQTPBarHorizontalGraph(parent), stackParent(nullptr)
|
|
{
|
|
|
|
}
|
|
|
|
JKQTPBarHorizontalStackableGraph::JKQTPBarHorizontalStackableGraph(JKQTPlotter *parent):
|
|
JKQTPBarHorizontalStackableGraph(parent->getPlotter())
|
|
{
|
|
|
|
}
|
|
|
|
void JKQTPBarHorizontalStackableGraph::stackUpon(JKQTPBarHorizontalStackableGraph *parentGraph)
|
|
{
|
|
stackParent=parentGraph;
|
|
}
|
|
|
|
void JKQTPBarHorizontalStackableGraph::dontStackUpon()
|
|
{
|
|
stackParent=nullptr;
|
|
}
|
|
|
|
const JKQTPBarHorizontalStackableGraph *JKQTPBarHorizontalStackableGraph::getStackParent() const
|
|
{
|
|
return stackParent;
|
|
}
|
|
|
|
JKQTPBarHorizontalStackableGraph *JKQTPBarHorizontalStackableGraph::getStackParent()
|
|
{
|
|
return stackParent;
|
|
}
|
|
|
|
|
|
double JKQTPBarHorizontalStackableGraph::getStackedMax(int index) const
|
|
{
|
|
double height=0;
|
|
if (parent!=nullptr) {
|
|
JKQTPDatastore* datastore=parent->getDatastore();
|
|
height=datastore->get(static_cast<size_t>(xColumn),static_cast<size_t>(index));
|
|
}
|
|
if (stackParent==nullptr) {
|
|
return height;
|
|
} else {
|
|
return stackParent->getStackedMax(index)+height;
|
|
}
|
|
}
|
|
|
|
double JKQTPBarHorizontalStackableGraph::getParentStackedMax(int index) const
|
|
{
|
|
if (stackParent) {
|
|
return stackParent->getStackedMax(index);
|
|
} else {
|
|
return getBaseline();
|
|
}
|
|
}
|
|
|
|
bool JKQTPBarHorizontalStackableGraph::hasStackParent() const
|
|
{
|
|
return stackParent!=nullptr;
|
|
}
|