------------------------------------------------------------------------------
| 3096 | |
| 3097 | //------------------------------------------------------------------------------ |
| 3098 | void vtkXYPlotActor::SetAxisTitleTextProperty(vtkTextProperty* p) |
| 3099 | { |
| 3100 | // NB: Perform shallow copy here since each individual axis can be |
| 3101 | // accessed through the class API ( i.e. each individual axis text prop |
| 3102 | // can be changed ). Therefore, we can not just assign pointers otherwise |
| 3103 | // each individual axis text prop would point to the same text prop. |
| 3104 | this->AxisTitleTextProperty->ShallowCopy(p); |
| 3105 | this->YTitleActor->GetTextProperty()->ShallowCopy(p); |
| 3106 | this->Modified(); |
| 3107 | } |
| 3108 | |
| 3109 | //------------------------------------------------------------------------------ |
| 3110 | void vtkXYPlotActor::SetAxisLabelColor(double r, double g, double b) |