| 435 | } |
| 436 | |
| 437 | std::string tooltip::ToolTipController::InvertYTip(const util::Point &p, xg::scale::AbstractScale &yScale) { |
| 438 | util::Point invertPoint = chart_->GetCoord().InvertPoint(p); |
| 439 | nlohmann::json yVal = yScale.Invert(invertPoint.y); |
| 440 | return yScale.GetTickText(yVal, chart_, 0); |
| 441 | } |
nothing calls this directly
no test coverage detected