------------------------------------------------------------------------------
| 1972 | |
| 1973 | //------------------------------------------------------------------------------ |
| 1974 | void vtkScatterPlotMatrix::SetIndexedLabels(vtkStringArray* labels) |
| 1975 | { |
| 1976 | if (labels != this->Private->IndexedLabelsArray) |
| 1977 | { |
| 1978 | this->Private->IndexedLabelsArray = labels; |
| 1979 | this->Modified(); |
| 1980 | |
| 1981 | if (this->Private->BigChart) |
| 1982 | { |
| 1983 | vtkPlot* plot = this->Private->BigChart->GetPlot(0); |
| 1984 | |
| 1985 | if (plot) |
| 1986 | { |
| 1987 | plot->SetIndexedLabels(labels); |
| 1988 | } |
| 1989 | } |
| 1990 | } |
| 1991 | } |
| 1992 | |
| 1993 | //------------------------------------------------------------------------------ |
| 1994 | vtkStringArray* vtkScatterPlotMatrix::GetIndexedLabels() const |
no test coverage detected