Definition in file KDChartDataValueAttributes.h.
#include <Qt>
#include <QMetaType>
#include "KDChartGlobal.h"
#include "KDChartEnums.h"
#include "KDChartRelativePosition.h"
Go to the source code of this file.
Namespaces | |
namespace | KDChart |
Classes | |
class | KDChart::DataValueAttributes |
Diagram attributes dealing with data value labels. More... | |
Functions | |
KDCHART_EXPORT QDebug | operator<< (QDebug, const KDChart::DataValueAttributes &) |
Q_DECLARE_TYPEINFO (KDChart::DataValueAttributes, Q_MOVABLE_TYPE) |
KDCHART_EXPORT QDebug operator<< | ( | QDebug | , | |
const KDChart::DataValueAttributes & | ||||
) |
Definition at line 341 of file KDChartDataValueAttributes.cpp.
References KDChart::DataValueAttributes::backgroundAttributes(), KDChart::DataValueAttributes::decimalDigits(), KDChart::DataValueAttributes::frameAttributes(), KDChart::DataValueAttributes::isVisible(), KDChart::DataValueAttributes::negativePosition(), KDChart::DataValueAttributes::positivePosition(), KDChart::DataValueAttributes::powerOfTenDivisor(), KDChart::DataValueAttributes::showOverlappingDataLabels(), KDChart::DataValueAttributes::showRepetitiveDataLabels(), and KDChart::DataValueAttributes::textAttributes().
00342 { 00343 dbg << "RelativePosition DataValueAttributes(" 00344 << "visible="<<val.isVisible() 00345 << "textattributes="<<val.textAttributes() 00346 << "frameattributes="<<val.frameAttributes() 00347 << "backgroundattributes="<<val.backgroundAttributes() 00348 << "decimaldigits="<<val.decimalDigits() 00349 << "poweroftendivisor="<<val.powerOfTenDivisor() 00350 << "showinfinite="<<val.showInfinite() 00351 << "negativerelativeposition="<<val.negativePosition() 00352 << "positiverelativeposition="<<val.positivePosition() 00353 << "showRepetitiveDataLabels="<<val.showRepetitiveDataLabels() 00354 << "showOverlappingDataLabels="<<val.showOverlappingDataLabels() 00355 <<")"; 00356 return dbg; 00357 }
Q_DECLARE_TYPEINFO | ( | KDChart::DataValueAttributes | , | |
Q_MOVABLE_TYPE | ||||
) |