MCPcopy Create free account
hub / github.com/KDAB/KDChart / Chart

Method Chart

src/KDChart/KDChartChart.cpp:1105–1123  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1103#define d d_func()
1104
1105Chart::Chart(QWidget *parent)
1106 : QWidget(parent)
1107 , _d(new Private(this))
1108{
1109#if defined KDAB_EVAL
1110 EvalDialog::checkEvalLicense("KD Chart");
1111#endif
1112
1113 FrameAttributes frameAttrs;
1114 // no frame per default...
1115 // frameAttrs.setVisible( true );
1116 frameAttrs.setPen(QPen(Qt::black));
1117 frameAttrs.setPadding(1);
1118 setFrameAttributes(frameAttrs);
1119
1120 addCoordinatePlane(new CartesianCoordinatePlane(this));
1121
1122 d->createLayouts();
1123}
1124
1125Chart::~Chart()
1126{

Callers

nothing calls this directly

Calls 4

setPaddingMethod · 0.80
createLayoutsMethod · 0.80
QPenClass · 0.70
setPenMethod · 0.45

Tested by

no test coverage detected