#include <QMetaType>
#include "KDChartGlobal.h"
Go to the source code of this file.
Namespaces | |
namespace | KDChart |
Classes | |
class | KDChart::LineAttributes |
Set of attributes for changing the appearance of line charts. More... | |
Functions | |
KDCHART_EXPORT QDebug | operator<< (QDebug, const KDChart::LineAttributes &) |
Q_DECLARE_TYPEINFO (KDChart::LineAttributes, Q_MOVABLE_TYPE) |
KDCHART_EXPORT QDebug operator<< | ( | QDebug | , | |
const KDChart::LineAttributes & | ||||
) |
Definition at line 136 of file KDChartLineAttributes.cpp.
References KDChart::LineAttributes::areaBoundingDataset(), KDChart::LineAttributes::displayArea(), and KDChart::LineAttributes::transparency().
00137 { 00138 dbg << "KDChart::LineAttributes(" 00139 // MissingValuesPolicy missingValuesPolicy; 00140 << "bool="<<a.displayArea() 00141 << "transparency="<<a.transparency() 00142 << "areaBoundingDataset="<<a.areaBoundingDataset() 00143 << ")"; 00144 return dbg; 00145 00146 }
Q_DECLARE_TYPEINFO | ( | KDChart::LineAttributes | , | |
Q_MOVABLE_TYPE | ||||
) |