| 8 | using namespace QtCharts; |
| 9 | |
| 10 | InteractiveChartView::InteractiveChartView(QChart *chart, QWidget *parent) |
| 11 | : QChartView(chart, parent) { |
| 12 | toolTip_ = new ChartTooltipItem(chart); |
| 13 | toolTip_->hide(); |
| 14 | rubberBand_ = new QRubberBand(QRubberBand::Rectangle, this); |
| 15 | setAttribute(Qt::WA_AcceptTouchEvents, true); |
| 16 | } |
| 17 | |
| 18 | void InteractiveChartView::HideToolTip() { |
| 19 | toolTip_->hide(); |
nothing calls this directly
no outgoing calls
no test coverage detected