Definition in file KDChartMeasure.h.
#include <QDebug>
#include <Qt>
#include <QStack>
#include "KDChartGlobal.h"
#include "KDChartEnums.h"
Go to the source code of this file.
Namespaces | |
namespace | KDChart |
Classes | |
class | KDChart::GlobalMeasureScaling |
Auxiliary class used by the KDChart::Measure and KDChart::Chart class. More... | |
class | KDChart::Measure |
Measure is used to specify all relative and/or absolute measures in KDChart, e.g. More... | |
Functions | |
KDCHART_EXPORT QDebug | operator<< (QDebug, const KDChart::Measure &) |
KDCHART_EXPORT QDebug operator<< | ( | QDebug | , | |
const KDChart::Measure & | ||||
) |
Definition at line 240 of file KDChartMeasure.cpp.
References KDChart::Measure::calculationMode(), KDChart::Measure::referenceArea(), KDChart::Measure::referenceOrientation(), and KDChart::Measure::value().
00241 { 00242 dbg << "KDChart::Measure(" 00243 << "value="<<m.value() 00244 << "calculationmode="<<m.calculationMode() 00245 << "referencearea="<<m.referenceArea() 00246 << "referenceorientation="<<m.referenceOrientation() 00247 << ")"; 00248 return dbg; 00249 }