------------------------------------------------------------------------------
| 587 | |
| 588 | //------------------------------------------------------------------------------ |
| 589 | std::string vtkPlot::GetYAxisInputArrayToProcess() |
| 590 | { |
| 591 | auto* info = this->Data->GetInputArrayInformation(1); |
| 592 | const char* name = info->Get(vtkDataObject::FIELD_NAME()); |
| 593 | return name ? name : ""; |
| 594 | } |
| 595 | |
| 596 | //------------------------------------------------------------------------------ |
| 597 | void vtkPlot::SetSelection(vtkIdTypeArray* id) |
nothing calls this directly
no test coverage detected