------------------------------------------------------------------------------
| 1475 | |
| 1476 | //------------------------------------------------------------------------------ |
| 1477 | vtkIdType vtkChartXY::StackPlotUnder(vtkPlot* plot, vtkPlot* above) |
| 1478 | { |
| 1479 | vtkIdType plotIndex = this->GetPlotIndex(plot); |
| 1480 | vtkIdType aboveIndex = this->GetPlotIndex(above); |
| 1481 | int corner = this->GetPlotCorner(plot); |
| 1482 | if (corner < 0 || corner >= 4 || corner != this->GetPlotCorner(above)) |
| 1483 | { |
| 1484 | return plotIndex; |
| 1485 | } |
| 1486 | return this->ChartPrivate->PlotCorners[corner]->StackUnder(plotIndex, aboveIndex); |
| 1487 | } |
| 1488 | |
| 1489 | //------------------------------------------------------------------------------ |
| 1490 | void vtkChartXY::SetShowLegend(bool visible) |
nothing calls this directly
no test coverage detected