| 38 | }; |
| 39 | |
| 40 | ValueTrackerAttributes::Private::Private() |
| 41 | : linePen(QPen(QColor(80, 80, 80, 200))) |
| 42 | , markerSize(QSizeF(6.0, 6.0)) |
| 43 | , areaBrush(QBrush()) |
| 44 | , orientations(Qt::Vertical | Qt::Horizontal) |
| 45 | { |
| 46 | markerPen = linePen; |
| 47 | arrowBrush = linePen.color(); |
| 48 | } |
| 49 | |
| 50 | ValueTrackerAttributes::ValueTrackerAttributes() |
| 51 | : _d(new Private()) |