MCPcopy Create free account
hub / github.com/Kitware/VTK / GetColumnVisibility

Method GetColumnVisibility

Charts/Core/vtkChartBox.cxx:286–296  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

284
285//------------------------------------------------------------------------------
286bool 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//------------------------------------------------------------------------------
299bool vtkChartBox::GetColumnVisibility(vtkIdType column)

Callers

nothing calls this directly

Calls 5

GetPlotMethod · 0.95
GetNumberOfTuplesMethod · 0.45
GetValueMethod · 0.45
GetInputMethod · 0.45
GetColumnNameMethod · 0.45

Tested by

no test coverage detected