------------------------------------------------------------------------------
| 284 | |
| 285 | //------------------------------------------------------------------------------ |
| 286 | bool vtkChartBox::GetColumnVisibility(const vtkStdString& name) |
| 287 | { |
| 288 | for (vtkIdType i = 0; i < this->VisibleColumns->GetNumberOfTuples(); ++i) |
| 289 | { |
| 290 | if (this->VisibleColumns->GetValue(i) == name) |
| 291 | { |
| 292 | return true; |
| 293 | } |
| 294 | } |
| 295 | return false; |
| 296 | } |
| 297 | |
| 298 | //------------------------------------------------------------------------------ |
| 299 | bool vtkChartBox::GetColumnVisibility(vtkIdType column) |
nothing calls this directly
no test coverage detected