------------------------------------------------------------------------------
| 154 | |
| 155 | //------------------------------------------------------------------------------ |
| 156 | void vtkLegendScaleActor::SetAxesTextProperty(vtkTextProperty* prop) |
| 157 | { |
| 158 | this->RightAxis->SetLabelTextProperty(prop); |
| 159 | this->TopAxis->SetLabelTextProperty(prop); |
| 160 | this->LeftAxis->SetLabelTextProperty(prop); |
| 161 | this->BottomAxis->SetLabelTextProperty(prop); |
| 162 | |
| 163 | this->RightAxis->SetTitleTextProperty(prop); |
| 164 | this->TopAxis->SetTitleTextProperty(prop); |
| 165 | this->LeftAxis->SetTitleTextProperty(prop); |
| 166 | this->BottomAxis->SetTitleTextProperty(prop); |
| 167 | |
| 168 | this->Modified(); |
| 169 | } |
| 170 | |
| 171 | //------------------------------------------------------------------------------ |
| 172 | void vtkLegendScaleActor::SetAxesProperty(vtkProperty2D* prop) |
nothing calls this directly
no test coverage detected