------------------------------------------------------------------------------
| 573 | |
| 574 | //------------------------------------------------------------------------------ |
| 575 | std::string vtkPlot::GetXAxisInputArrayToProcess() |
| 576 | { |
| 577 | auto* info = this->Data->GetInputArrayInformation(0); |
| 578 | const char* name = info->Get(vtkDataObject::FIELD_NAME()); |
| 579 | return name ? name : ""; |
| 580 | } |
| 581 | |
| 582 | //------------------------------------------------------------------------------ |
| 583 | void vtkPlot::SetYAxisInputArrayToProcess(const std::string& name) |
nothing calls this directly
no test coverage detected