| 5269 | } |
| 5270 | |
| 5271 | void ShowTicksMetrics(const ImPlotTicker& ticker) { |
| 5272 | ImGui::BulletText("Size: %d", ticker.TickCount()); |
| 5273 | ImGui::BulletText("MaxSize: [%f,%f]", ticker.MaxSize.x, ticker.MaxSize.y); |
| 5274 | } |
| 5275 | |
| 5276 | void ShowAxisMetrics(const ImPlotPlot& plot, const ImPlotAxis& axis) { |
| 5277 | ImGui::BulletText("Label: %s", axis.LabelOffset == -1 ? "[none]" : plot.GetAxisLabel(axis)); |
no test coverage detected