| 664 | } |
| 665 | |
| 666 | const nlohmann::json XChart::GetSelectedRecordsForGeom(const size_t index) { |
| 667 | if(!canvasContext_ || !canvasContext_->IsValid() || scaleController_->Empty()) { |
| 668 | return {}; |
| 669 | } |
| 670 | const auto &geom = this->geoms_[index]; |
| 671 | auto &records = geom->GetSelectedRecords(); |
| 672 | return records; |
| 673 | } |
| 674 | |
| 675 | void XChart::ClearInner() { |
| 676 |
no test coverage detected