VTK  9.3.20240419
Public Types | Public Member Functions | Static Public Member Functions | Protected Types | Protected Member Functions | Protected Attributes | List of all members
vtkChartXYZ Class Reference

Factory class for drawing 3D XYZ charts. More...

#include <vtkChartXYZ.h>

Inheritance diagram for vtkChartXYZ:
[legend]
Collaboration diagram for vtkChartXYZ:
[legend]

Public Types

typedef vtkContextItem Superclass
 
- Public Types inherited from vtkContextItem
typedef vtkAbstractContextItem Superclass
 
- Public Types inherited from vtkAbstractContextItem
typedef vtkObject Superclass
 

Public Member Functions

virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class. More...
 
vtkChartXYZNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
void SetGeometry (const vtkRectf &bounds)
 Set the geometry in pixel coordinates (origin and width/height). More...
 
void SetMargins (const vtkVector4i &margins)
 Set the margins in pixels ordered top right bottom left The box will be drawn inside those margins, but the labels and textdecorations will still escape. More...
 
virtual void SetAngle (double)
 Set the rotation angle for the chart (AutoRotate mode only). More...
 
void SetAroundX (bool isX)
 Set whether or not we're rotating about the X axis. More...
 
virtual void SetAnnotationLink (vtkAnnotationLink *link)
 Set the vtkAnnotationLink for the chart. More...
 
vtkAxisGetAxis (int axis)
 Get the x (0), y (1) or z (2) axis. More...
 
virtual void SetAxis (int axisIndex, vtkAxis *axis)
 Set the x (0), y (1) or z (2) axis. More...
 
vtkTextPropertyGetAxesTextProperty ()
 Get the text property for axes. More...
 
virtual void SetXAxisLabel (vtkStdString)
 Set the X axis label. More...
 
virtual void SetYAxisLabel (vtkStdString)
 Set the Y axis label. More...
 
virtual void SetZAxisLabel (vtkStdString)
 Set the Z axis label. More...
 
virtual void SetEnsureOuterEdgeAxisLabelling (bool)
 Set to true to ensure that axis labels are always on the outer edges of the chart. More...
 
virtual void SetAutoRotate (bool)
 Set whether or not we're using this chart to rotate on a timer. More...
 
void SetDecorateAxes (bool b)
 Set whether or not axes labels & tick marks should be drawn. More...
 
void SetFitToScene (bool b)
 Set whether or not the chart should automatically resize itself to fill the scene. More...
 
void Update () override
 Perform any updates to the item that may be necessary before rendering. More...
 
bool Paint (vtkContext2D *painter) override
 Paint event for the chart, called whenever the chart needs to be drawn. More...
 
virtual vtkIdType AddPlot (vtkPlot3D *plot)
 Adds a plot to the chart. More...
 
virtual bool RemovePlot (vtkPlot3D *plot)
 Removes a plot from the chart. More...
 
void ClearPlots ()
 Remove all the plots from this chart. More...
 
void RecalculateBounds ()
 Determine the XYZ bounds of the plots within this chart. More...
 
void RecalculateTransform ()
 Use this chart's Geometry to set the endpoints of its axes. More...
 
bool Hit (const vtkContextMouseEvent &mouse) override
 Returns true if the transform is interactive, false otherwise. More...
 
bool MouseButtonPressEvent (const vtkContextMouseEvent &mouse) override
 Mouse press event. More...
 
bool MouseMoveEvent (const vtkContextMouseEvent &mouse) override
 Mouse move event. More...
 
bool MouseWheelEvent (const vtkContextMouseEvent &mouse, int delta) override
 Mouse wheel event. More...
 
bool KeyPressEvent (const vtkContextKeyEvent &key) override
 Key press event. More...
 
void SetClippingPlanesEnabled (bool)
 Hide data outside the box. More...
 
virtual bool GetClippingPlanesEnabled ()
 Check whether data outside the box will be hidden or not. More...
 
virtual void SetScaleBoxWithPlot (bool)
 When rotating the mousewheel, scale not only the plot but also the box. More...
 
virtual bool GetScaleBoxWithPlot ()
 Check whether scaling the plot will also scale the box. More...
 
void SetAxisColor (const vtkColor4ub &color)
 Set the color for the axes. More...
 
vtkColor4ub GetAxisColor ()
 Set the color for the axes. More...
 
- Public Member Functions inherited from vtkContextItem
vtkContextItemNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual void SetTransform (vtkContextTransform *)
 Set the transform of the item. More...
 
virtual double GetOpacity ()
 Get the opacity of the item. More...
 
virtual void SetOpacity (double)
 Set the opacity of the item. More...
 
- Public Member Functions inherited from vtkAbstractContextItem
vtkAbstractContextItemNewInstance () const
 
virtual bool PaintChildren (vtkContext2D *painter)
 Paint the children of the item, should be called whenever the children need to be rendered. More...
 
virtual void ReleaseGraphicsResources ()
 Release graphics resources hold by the item. More...
 
vtkIdType AddItem (vtkAbstractContextItem *item)
 Add child items to this item. More...
 
bool RemoveItem (vtkAbstractContextItem *item)
 Remove child item from this item. More...
 
bool RemoveItem (vtkIdType index)
 Remove child item from this item. More...
 
vtkAbstractContextItemGetItem (vtkIdType index)
 Get the item at the specified index. More...
 
vtkIdType GetItemIndex (vtkAbstractContextItem *item)
 Get the index of the specified item in itemIndex. More...
 
vtkIdType GetNumberOfItems ()
 Get the number of child items. More...
 
void ClearItems ()
 Remove all child items from this item. More...
 
vtkIdType Raise (vtkIdType index)
 Raises the child to the top of the item's stack. More...
 
virtual vtkIdType StackAbove (vtkIdType index, vtkIdType under)
 Raises the child above the under sibling. More...
 
vtkIdType Lower (vtkIdType index)
 Lowers the child to the bottom of the item's stack. More...
 
virtual vtkIdType StackUnder (vtkIdType child, vtkIdType above)
 Lowers the child under the above sibling. More...
 
virtual vtkAbstractContextItemGetPickedItem (const vtkContextMouseEvent &mouse)
 Return the item under the mouse. More...
 
virtual bool MouseEnterEvent (const vtkContextMouseEvent &mouse)
 Mouse enter event. More...
 
virtual bool MouseLeaveEvent (const vtkContextMouseEvent &mouse)
 Mouse leave event. More...
 
virtual bool MouseButtonReleaseEvent (const vtkContextMouseEvent &mouse)
 Mouse button release event. More...
 
virtual bool MouseDoubleClickEvent (const vtkContextMouseEvent &mouse)
 Mouse button double click event. More...
 
virtual bool KeyReleaseEvent (const vtkContextKeyEvent &key)
 Key release event. More...
 
virtual void SetScene (vtkContextScene *scene)
 Set the vtkContextScene for the item, always set for an item in a scene. More...
 
vtkContextSceneGetScene ()
 Get the vtkContextScene for the item, always set for an item in a scene. More...
 
virtual void SetParent (vtkAbstractContextItem *parent)
 Set the parent item. More...
 
vtkAbstractContextItemGetParent ()
 Get the parent item. More...
 
virtual vtkVector2f MapToParent (const vtkVector2f &point)
 Maps the point to the parent coordinate system. More...
 
virtual vtkVector2f MapFromParent (const vtkVector2f &point)
 Maps the point from the parent coordinate system. More...
 
virtual vtkVector2f MapToScene (const vtkVector2f &point)
 Maps the point to the scene coordinate system. More...
 
virtual vtkVector2f MapFromScene (const vtkVector2f &point)
 Maps the point from the scene coordinate system. More...
 
virtual bool GetVisible ()
 Get the visibility of the item (should it be drawn). More...
 
virtual void SetVisible (bool)
 Set the visibility of the item (should it be drawn). More...
 
virtual bool GetInteractive ()
 Get if the item is interactive (should respond to mouse events). More...
 
virtual void SetInteractive (bool)
 Set if the item is interactive (should respond to mouse events). More...
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on. More...
 
virtual void DebugOff ()
 Turn debugging output off. More...
 
bool GetDebug ()
 Get the value of the debug flag. More...
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag. More...
 
virtual void Modified ()
 Update the modification time for this object. More...
 
virtual vtkMTimeType GetMTime ()
 Return this object's modified time. More...
 
void RemoveObserver (unsigned long tag)
 
void RemoveObservers (unsigned long event)
 
void RemoveObservers (const char *event)
 
void RemoveAllObservers ()
 
vtkTypeBool HasObserver (unsigned long event)
 
vtkTypeBool HasObserver (const char *event)
 
vtkTypeBool InvokeEvent (unsigned long event)
 
vtkTypeBool InvokeEvent (const char *event)
 
std::string GetObjectDescription () const override
 The object description printed in messages and PrintSelf output. More...
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
vtkTypeBool HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, void(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Overloads to AddObserver that allow developers to add class member functions as callbacks for events. More...
 
template<class U , class T >
unsigned long AddObserver (unsigned long event, U observer, bool(T::*callback)(vtkObject *, unsigned long, void *), float priority=0.0f)
 Allow user to set the AbortFlagOn() with the return value of the callback method. More...
 
vtkTypeBool InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
vtkTypeBool InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not. More...
 
virtual void SetObjectName (const std::string &objectName)
 Set/get the name of this object for reporting purposes. More...
 
virtual std::string GetObjectName () const
 Set/get the name of this object for reporting purposes. More...
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string. More...
 
virtual vtkIdType GetNumberOfGenerationsFromBase (const char *name)
 Given the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
virtual void Delete ()
 Delete a VTK object. More...
 
virtual void FastDelete ()
 Delete a reference to this object. More...
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream. More...
 
void Register (vtkObjectBase *o)
 Increase the reference count (mark as used by another object). More...
 
virtual void UnRegister (vtkObjectBase *o)
 Decrease the reference count (release by another object). More...
 
int GetReferenceCount ()
 Return the current reference count of this object. More...
 
void SetReferenceCount (int)
 Sets the reference count. More...
 
bool GetIsInMemkind () const
 A local state flag that remembers whether this object lives in the normal or extended memory space. More...
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses. More...
 
virtual bool UsesGarbageCollector () const
 Indicate whether the class uses vtkGarbageCollector or not. More...
 

Static Public Member Functions

static vtkTypeBool IsTypeOf (const char *type)
 
static vtkChartXYZSafeDownCast (vtkObjectBase *o)
 
static vtkChartXYZNew ()
 
- Static Public Member Functions inherited from vtkContextItem
static vtkTypeBool IsTypeOf (const char *type)
 
static vtkContextItemSafeDownCast (vtkObjectBase *o)
 
- Static Public Member Functions inherited from vtkAbstractContextItem
static vtkTypeBool IsTypeOf (const char *type)
 
static vtkAbstractContextItemSafeDownCast (vtkObjectBase *o)
 
- Static Public Member Functions inherited from vtkObject
static vtkObjectNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes. More...
 
static void SetGlobalWarningDisplay (vtkTypeBool val)
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
static vtkTypeBool GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed. More...
 
- Static Public Member Functions inherited from vtkObjectBase
static vtkTypeBool IsTypeOf (const char *name)
 Return 1 if this class type is the same type of (or a subclass of) the named class. More...
 
static vtkIdType GetNumberOfGenerationsFromBaseType (const char *name)
 Given a the name of a base class of this class type, return the distance of inheritance between this class type and the named class (how many generations of inheritance are there between this class and the named class). More...
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on. More...
 
static void SetMemkindDirectory (const char *directoryname)
 The name of a directory, ideally mounted -o dax, to memory map an extended memory space within. More...
 
static bool GetUsingMemkind ()
 A global state flag that controls whether vtkObjects are constructed in the usual way (the default) or within the extended memory space. More...
 

Protected Types

enum  RotateDirection { LEFT , RIGHT , UP , DOWN }
 Rotation directions. More...
 
enum  AxisState {
  VERTICAL , VERTICAL_2 , HORIZONTAL , HORIZONTAL_2 ,
  DO_NOT_LABEL , STANDARD
}
 The state of an axis. More...
 
enum  Direction {
  NORTH , NORTH_EAST , EAST , SOUTH_EAST ,
  SOUTH , SOUTH_WEST , WEST , NORTH_WEST
}
 The direction to data from an axis. More...
 
enum  { USE_MARGINS_AND_SCENE_SIZE , USE_GEOMETRY }
 Specifies how to calculate the size of the chart in function of the size of the scene. More...
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkChartXYZ ()
 
 ~vtkChartXYZ () override
 
virtual void CalculateTransforms ()
 Calculate the transformation matrices used to draw data points and axes in the scene. More...
 
bool CalculatePlotTransform (vtkAxis *x, vtkAxis *y, vtkAxis *z, vtkTransform *transform)
 Given the x, y and z vtkAxis, and a transform, calculate the transform that the points in a chart would need to be drawn within the axes. More...
 
bool Rotate (const vtkContextMouseEvent &mouse)
 Rotate the chart in response to a mouse movement. More...
 
bool Rotate (RotateDirection rotateDirection)
 Rotate the chart in a specific direction. More...
 
bool Pan (const vtkContextMouseEvent &mouse)
 Pan the data within the chart in response to a mouse movement. More...
 
bool Zoom (const vtkContextMouseEvent &mouse)
 Zoom in or out on the data in response to a mouse movement. More...
 
bool Spin (const vtkContextMouseEvent &mouse)
 Spin the chart in response to a mouse movement. More...
 
void LookDownX ()
 Adjust the rotation of the chart so that we are looking down the X axis. More...
 
void LookDownY ()
 Adjust the rotation of the chart so that we are looking down the Y axis. More...
 
void LookDownZ ()
 Adjust the rotation of the chart so that we are looking down the Z axis. More...
 
void LookUpX ()
 Adjust the rotation of the chart so that we are looking up the X axis. More...
 
void LookUpY ()
 Adjust the rotation of the chart so that we are looking up the Y axis. More...
 
void LookUpZ ()
 Adjust the rotation of the chart so that we are looking up the Z axis. More...
 
bool CheckForSceneResize ()
 Check to see if the scene changed size since the last render. More...
 
void RescaleAxes ()
 Scale the axes up or down in response to a scene resize. More...
 
void ScaleUpAxes ()
 Scale up the axes when the scene gets larger. More...
 
void ScaleDownAxes ()
 Scale down the axes when the scene gets smaller. More...
 
void ZoomAxes (int delta)
 Change the scaling of the axes by a specified amount. More...
 
void InitializeAxesBoundaryPoints ()
 Initialize a list of "test points". More...
 
void InitializeFutureBox ()
 Initialize the "future box" transform. More...
 
void ComputeDataBounds ()
 Compute a bounding box for the data that is rendered within the axes. More...
 
void DrawAxes (vtkContext3D *context)
 Draw the cube axes of this chart. More...
 
void DetermineWhichAxesToLabel ()
 For each of the XYZ dimensions, find the axis line that is furthest from the rendered data. More...
 
void NewDetermineWhichAxesToLabel ()
 New style axis labelling, ensuring labelling is always at the edges of the chart in the most sensible places. More...
 
void LegacyDetermineWhichAxesToLabel ()
 Old-style axis labelling, for compatibility; labelling may occur in less optimal places e.g. More...
 
void DrawTickMarks (vtkContext2D *painter)
 Draw tick marks and tick mark labels along the axes. More...
 
void DrawAxesLabels (vtkContext2D *painter)
 Label the axes. More...
 
void GetOffsetForAxisLabel (int axis, float *bounds, float *offset)
 Compute how some text should be offset from an axis. More...
 
double CalculateNiceMinMax (double &min, double &max, int axis)
 Calculate the next "nicest" numbers above and below the current minimum. More...
 
void GetClippingPlaneEquation (int i, double *planeEquation)
 Get the equation for the ith face of our bounding cube. More...
 
std::size_t GetMarginLeft () const
 Gets the current margin left in pixels irrespective of the size-strategy used. More...
 
std::size_t GetMarginBottom () const
 Gets the current margin top in pixels irrespective of the size-strategy used. More...
 
std::size_t GetPlotWidth () const
 Gets the current width of the plot in pixels irrespective of the size-strategy used. More...
 
std::size_t GetPlotHeight () const
 Gets the current height of the plot in pixels irrespective of the size-strategy used. More...
 
- Protected Member Functions inherited from vtkContextItem
 vtkContextItem ()=default
 
 ~vtkContextItem () override
 
- Protected Member Functions inherited from vtkAbstractContextItem
 vtkAbstractContextItem ()
 
 ~vtkAbstractContextItem () override
 
virtual void ReleaseGraphicsCache ()
 Release cache entries created by this context item. More...
 
- Protected Member Functions inherited from vtkObject
 vtkObject ()
 
 ~vtkObject () override
 
void RegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check) override
 
void InternalGrabFocus (vtkCommand *mouseEvents, vtkCommand *keypressEvents=nullptr)
 These methods allow a command to exclusively grab all events. More...
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events. More...
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void ReportReferences (vtkGarbageCollector *)
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

enum vtkChartXYZ:: { ... }  SizeStrategy = USE_GEOMETRY
 Specifies how to calculate the size of the chart in function of the size of the scene. More...
 
vtkVector4i Margins = vtkVector4i(40, 40, 40, 40)
 The margins in pixels for the box ordered top right bottom left Applicable only when SizeStrategy == USE_MARGINS_AND_SCENE_SIZE. More...
 
vtkRectf Geometry = vtkRectf(40, 40, 120, 120)
 The size and position of this chart. More...
 
std::vector< vtkSmartPointer< vtkAxis > > Axes
 The 3 axes of this chart. More...
 
bool AutoRotate = false
 This boolean indicates whether or not we're using this chart to rotate on a timer. More...
 
bool IsX = false
 When we're in AutoRotate mode, this boolean tells us if we should rotate about the X axis or the Y axis. More...
 
double Angle = 0
 When we're in AutoRotate mode, this value tells the chart how much it should be rotated. More...
 
bool DrawAxesDecoration = true
 This boolean indicates whether or not we should draw tick marks and axes labels. More...
 
bool FitToScene = true
 This boolean indicates whether or not we should automatically resize the chart so that it snugly fills up the scene. More...
 
vtkNew< vtkTransformContextTransform
 This is the transform that is applied when rendering data from the plots. More...
 
vtkNew< vtkTransformPlotTransform
 This transform translates and scales the plots' data points so that they appear within the axes of this chart. More...
 
vtkNew< vtkTransformBox
 This is the transform that is applied when rendering data from the plots. More...
 
vtkNew< vtkTransformRotation
 This transform keeps track of how the chart has been rotated. More...
 
vtkNew< vtkTransformTranslation
 This transform keeps track of how the data points have been panned within the chart. More...
 
vtkNew< vtkTransformScale
 This transform keeps track of how the data points have been scaled (zoomed in or zoomed out) within the chart. More...
 
vtkNew< vtkTransformBoxScale
 This transform keeps track of how the axes have been scaled (zoomed in or zoomed out). More...
 
vtkNew< vtkTransformFutureBox
 This transform is initialized as a copy of Box. More...
 
vtkNew< vtkTransformFutureBoxScale
 This transform keeps track of the Scale of the FutureBox transform. More...
 
vtkNew< vtkPenPen
 This is the pen that is used to draw data from the plots. More...
 
vtkNew< vtkPenAxisPen
 This is the pen that is used to draw the axes. More...
 
vtkSmartPointer< vtkAnnotationLinkLink
 This link is used to share selected points with other classes. More...
 
std::vector< vtkPlot3D * > Plots
 The plots that are drawn within this chart. More...
 
std::vector< vtkIdTypeFreePlaces
 These plots got removed (from Plots), try to reuse the free spot. More...
 
vtkNew< vtkTextPropertyAxesTextProperty
 The text properties of the axes. More...
 
std::string XAxisLabel
 The label for the X Axis. More...
 
std::string YAxisLabel
 The label for the Y Axis. More...
 
std::string ZAxisLabel
 The label for the Z Axis. More...
 
bool EnsureOuterEdgeAxisLabelling = false
 If set to true, use the new behaviour of ensuring that axis labels are on the outer edges of the chart. More...
 
vtkNew< vtkPlaneCollectionBoundingCube
 The six planes that define the bounding cube of our 3D axes. More...
 
float AxesBoundaryPoints [8][3]
 Points used to determine whether the axes will fit within the scene as currently sized, regardless of rotation. More...
 
float TickLabelOffset [3][2]
 This member variable stores the size of the tick labels for each axis. More...
 
int SceneHeight
 The height of the scene, as of the most recent call to Paint(). More...
 
int SceneWidth
 The weight of the scene, as of the most recent call to Paint(). More...
 
int DirectionToData [3]
 What direction the data is from each labeled axis line. More...
 
double DataBounds [4]
 A bounding box surrounding the currently rendered data points. More...
 
bool ClippingPlanesEnabled = true
 Hide data outside the box. More...
 
bool ScaleBoxWithPlot = true
 When rotating the mousewheel, scale not only the plot but also the box. More...
 
int XAxisToLabel [3]
 Which line to label. More...
 
int YAxisToLabel [3]
 Which line to label. More...
 
int ZAxisToLabel [3]
 Which line to label. More...
 
- Protected Attributes inherited from vtkContextItem
double Opacity = 1.0
 
vtkContextTransformTransform = nullptr
 
- Protected Attributes inherited from vtkAbstractContextItem
vtkContextSceneScene
 Point to the scene the item is on - can be null. More...
 
vtkAbstractContextItemParent
 Point to the parent item - can be null. More...
 
vtkContextScenePrivateChildren
 This structure provides a list of children, along with convenience functions to paint the children etc. More...
 
bool Visible
 Store the visibility of the item (default is true). More...
 
bool Interactive
 Store whether the item should respond to interactions (default is true). More...
 
- Protected Attributes inherited from vtkObject
bool Debug
 
vtkTimeStamp MTime
 
vtkSubjectHelper * SubjectHelper
 
std::string ObjectName
 
- Protected Attributes inherited from vtkObjectBase
std::atomic< int32_t > ReferenceCount
 
vtkWeakPointerBase ** WeakPointers
 

Additional Inherited Members

- Static Protected Member Functions inherited from vtkObjectBase
static vtkMallocingFunction GetCurrentMallocFunction ()
 
static vtkReallocingFunction GetCurrentReallocFunction ()
 
static vtkFreeingFunction GetCurrentFreeFunction ()
 
static vtkFreeingFunction GetAlternateFreeFunction ()
 

Detailed Description

Factory class for drawing 3D XYZ charts.

Online Examples:

Tests:
vtkChartXYZ (Tests)

Definition at line 68 of file vtkChartXYZ.h.

Member Typedef Documentation

◆ Superclass

Definition at line 71 of file vtkChartXYZ.h.

Member Enumeration Documentation

◆ RotateDirection

Rotation directions.

Enumerator
LEFT 
RIGHT 
UP 
DOWN 

Definition at line 282 of file vtkChartXYZ.h.

◆ AxisState

enum vtkChartXYZ::AxisState
protected

The state of an axis.

Enumerator
VERTICAL 
VERTICAL_2 
HORIZONTAL 
HORIZONTAL_2 
DO_NOT_LABEL 
STANDARD 

Definition at line 293 of file vtkChartXYZ.h.

◆ Direction

enum vtkChartXYZ::Direction
protected

The direction to data from an axis.

Enumerator
NORTH 
NORTH_EAST 
EAST 
SOUTH_EAST 
SOUTH 
SOUTH_WEST 
WEST 
NORTH_WEST 

Definition at line 306 of file vtkChartXYZ.h.

◆ anonymous enum

anonymous enum
protected

Specifies how to calculate the size of the chart in function of the size of the scene.

Enumerator
USE_MARGINS_AND_SCENE_SIZE 
USE_GEOMETRY 

Definition at line 509 of file vtkChartXYZ.h.

Constructor & Destructor Documentation

◆ vtkChartXYZ()

vtkChartXYZ::vtkChartXYZ ( )
protected

◆ ~vtkChartXYZ()

vtkChartXYZ::~vtkChartXYZ ( )
overrideprotected

Member Function Documentation

◆ IsTypeOf()

static vtkTypeBool vtkChartXYZ::IsTypeOf ( const char *  type)
static

◆ IsA()

virtual vtkTypeBool vtkChartXYZ::IsA ( const char *  name)
virtual

Return 1 if this class is the same type of (or a subclass of) the named class.

Returns 0 otherwise. This method works in combination with vtkTypeMacro found in vtkSetGet.h.

Reimplemented from vtkContextItem.

◆ SafeDownCast()

static vtkChartXYZ* vtkChartXYZ::SafeDownCast ( vtkObjectBase o)
static

◆ NewInstanceInternal()

virtual vtkObjectBase* vtkChartXYZ::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented from vtkContextItem.

◆ NewInstance()

vtkChartXYZ* vtkChartXYZ::NewInstance ( ) const

◆ PrintSelf()

void vtkChartXYZ::PrintSelf ( ostream &  os,
vtkIndent  indent 
)
overridevirtual

Methods invoked by print to print information about the object including superclasses.

Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.

Reimplemented from vtkObjectBase.

◆ New()

static vtkChartXYZ* vtkChartXYZ::New ( )
static

◆ SetGeometry()

void vtkChartXYZ::SetGeometry ( const vtkRectf bounds)

Set the geometry in pixel coordinates (origin and width/height).

This method also sets up the end points of the axes of the chart. For this reason, if you call SetAroundX(), you should call SetGeometry() afterwards.

This method will result in a plot with a fixed size. If you want it to scale with the scene then use SetMargins.

◆ SetMargins()

void vtkChartXYZ::SetMargins ( const vtkVector4i margins)

Set the margins in pixels ordered top right bottom left The box will be drawn inside those margins, but the labels and textdecorations will still escape.

Note that the width and height automatically adapt to those of the scene.

If you want a fixed size instead then use SetGeometry.

◆ SetAngle()

virtual void vtkChartXYZ::SetAngle ( double  )
virtual

Set the rotation angle for the chart (AutoRotate mode only).

◆ SetAroundX()

void vtkChartXYZ::SetAroundX ( bool  isX)

Set whether or not we're rotating about the X axis.

◆ SetAnnotationLink()

virtual void vtkChartXYZ::SetAnnotationLink ( vtkAnnotationLink link)
virtual

Set the vtkAnnotationLink for the chart.

◆ GetAxis()

vtkAxis* vtkChartXYZ::GetAxis ( int  axis)

Get the x (0), y (1) or z (2) axis.

◆ SetAxis()

virtual void vtkChartXYZ::SetAxis ( int  axisIndex,
vtkAxis axis 
)
virtual

Set the x (0), y (1) or z (2) axis.

◆ SetAxisColor()

void vtkChartXYZ::SetAxisColor ( const vtkColor4ub color)

Set the color for the axes.

◆ GetAxisColor()

vtkColor4ub vtkChartXYZ::GetAxisColor ( )

Set the color for the axes.

◆ GetAxesTextProperty()

vtkTextProperty* vtkChartXYZ::GetAxesTextProperty ( )

Get the text property for axes.

Useful for changing font size, font family, font file.

For example to use a larger font which is capable of displaying unicode values change the property like this:

chart->GetAxesTextProperty()->SetFontFamily(VTK_FONT_FILE); chart->GetAxesTextProperty()->SetFontFile("fonts/DejaVuSans.ttf"); chart->GetAxesTextProperty()->SetFontSize(32);

You'll need a unicode capable font in a suitable location.

Now to get the X axis to display Theta subscript (0) set the label like this using the hex unicode representation:

chart->SetXAxisLabel("\xcf\xb4\xe2\x82\x8d\xe2\x82\x80\xe2\x82\x8e");

Returns

◆ SetXAxisLabel()

virtual void vtkChartXYZ::SetXAxisLabel ( vtkStdString  )
virtual

Set the X axis label.

◆ SetYAxisLabel()

virtual void vtkChartXYZ::SetYAxisLabel ( vtkStdString  )
virtual

Set the Y axis label.

◆ SetZAxisLabel()

virtual void vtkChartXYZ::SetZAxisLabel ( vtkStdString  )
virtual

Set the Z axis label.

◆ SetEnsureOuterEdgeAxisLabelling()

virtual void vtkChartXYZ::SetEnsureOuterEdgeAxisLabelling ( bool  )
virtual

Set to true to ensure that axis labels are always on the outer edges of the chart.

Default is false, the legacy behaviour, for backwards compatibility, where axis labelling may occur on inner or back edges.

◆ SetAutoRotate()

virtual void vtkChartXYZ::SetAutoRotate ( bool  )
virtual

Set whether or not we're using this chart to rotate on a timer.

Default value is false.

◆ SetDecorateAxes()

void vtkChartXYZ::SetDecorateAxes ( bool  b)

Set whether or not axes labels & tick marks should be drawn.

Default value is true.

◆ SetFitToScene()

void vtkChartXYZ::SetFitToScene ( bool  b)

Set whether or not the chart should automatically resize itself to fill the scene.

Default value is true.

◆ Update()

void vtkChartXYZ::Update ( )
overridevirtual

Perform any updates to the item that may be necessary before rendering.

Reimplemented from vtkAbstractContextItem.

◆ Paint()

bool vtkChartXYZ::Paint ( vtkContext2D painter)
overridevirtual

Paint event for the chart, called whenever the chart needs to be drawn.

Reimplemented from vtkAbstractContextItem.

◆ AddPlot()

virtual vtkIdType vtkChartXYZ::AddPlot ( vtkPlot3D plot)
virtual

Adds a plot to the chart.

◆ RemovePlot()

virtual bool vtkChartXYZ::RemovePlot ( vtkPlot3D plot)
virtual

Removes a plot from the chart.

◆ ClearPlots()

void vtkChartXYZ::ClearPlots ( )

Remove all the plots from this chart.

◆ RecalculateBounds()

void vtkChartXYZ::RecalculateBounds ( )

Determine the XYZ bounds of the plots within this chart.

This information is then used to set the range of the axes.

◆ RecalculateTransform()

void vtkChartXYZ::RecalculateTransform ( )

Use this chart's Geometry to set the endpoints of its axes.

This method also sets up a transformation that is used to properly render the data within the chart.

◆ Hit()

bool vtkChartXYZ::Hit ( const vtkContextMouseEvent mouse)
overridevirtual

Returns true if the transform is interactive, false otherwise.

Reimplemented from vtkAbstractContextItem.

◆ MouseButtonPressEvent()

bool vtkChartXYZ::MouseButtonPressEvent ( const vtkContextMouseEvent mouse)
overridevirtual

Mouse press event.

Keep track of zoom anchor position.

Reimplemented from vtkAbstractContextItem.

◆ MouseMoveEvent()

bool vtkChartXYZ::MouseMoveEvent ( const vtkContextMouseEvent mouse)
overridevirtual

Mouse move event.

Perform pan or zoom as specified by the mouse bindings.

Reimplemented from vtkAbstractContextItem.

◆ MouseWheelEvent()

bool vtkChartXYZ::MouseWheelEvent ( const vtkContextMouseEvent mouse,
int  delta 
)
overridevirtual

Mouse wheel event.

Zooms in or out.

Reimplemented from vtkAbstractContextItem.

◆ KeyPressEvent()

bool vtkChartXYZ::KeyPressEvent ( const vtkContextKeyEvent key)
overridevirtual

Key press event.

This allows the user to snap the chart to one of three different 2D views. "x" changes the view so we're looking down the X axis. Similar behavior occurs for "y" or "z".

Reimplemented from vtkAbstractContextItem.

◆ SetClippingPlanesEnabled()

void vtkChartXYZ::SetClippingPlanesEnabled ( bool  )

Hide data outside the box.

◆ GetClippingPlanesEnabled()

virtual bool vtkChartXYZ::GetClippingPlanesEnabled ( )
virtual

Check whether data outside the box will be hidden or not.

◆ SetScaleBoxWithPlot()

virtual void vtkChartXYZ::SetScaleBoxWithPlot ( bool  )
virtual

When rotating the mousewheel, scale not only the plot but also the box.

◆ GetScaleBoxWithPlot()

virtual bool vtkChartXYZ::GetScaleBoxWithPlot ( )
virtual

Check whether scaling the plot will also scale the box.

◆ CalculateTransforms()

virtual void vtkChartXYZ::CalculateTransforms ( )
protectedvirtual

Calculate the transformation matrices used to draw data points and axes in the scene.

This function also sets up clipping planes that determine whether or not a data point is within range.

◆ CalculatePlotTransform()

bool vtkChartXYZ::CalculatePlotTransform ( vtkAxis x,
vtkAxis y,
vtkAxis z,
vtkTransform transform 
)
protected

Given the x, y and z vtkAxis, and a transform, calculate the transform that the points in a chart would need to be drawn within the axes.

This assumes that the axes have the correct start and end positions, and that they are perpendicular.

◆ Rotate() [1/2]

bool vtkChartXYZ::Rotate ( const vtkContextMouseEvent mouse)
protected

Rotate the chart in response to a mouse movement.

◆ Rotate() [2/2]

bool vtkChartXYZ::Rotate ( RotateDirection  rotateDirection)
protected

Rotate the chart in a specific direction.

◆ Pan()

bool vtkChartXYZ::Pan ( const vtkContextMouseEvent mouse)
protected

Pan the data within the chart in response to a mouse movement.

◆ Zoom()

bool vtkChartXYZ::Zoom ( const vtkContextMouseEvent mouse)
protected

Zoom in or out on the data in response to a mouse movement.

◆ Spin()

bool vtkChartXYZ::Spin ( const vtkContextMouseEvent mouse)
protected

Spin the chart in response to a mouse movement.

◆ LookDownX()

void vtkChartXYZ::LookDownX ( )
protected

Adjust the rotation of the chart so that we are looking down the X axis.

◆ LookDownY()

void vtkChartXYZ::LookDownY ( )
protected

Adjust the rotation of the chart so that we are looking down the Y axis.

◆ LookDownZ()

void vtkChartXYZ::LookDownZ ( )
protected

Adjust the rotation of the chart so that we are looking down the Z axis.

◆ LookUpX()

void vtkChartXYZ::LookUpX ( )
protected

Adjust the rotation of the chart so that we are looking up the X axis.

◆ LookUpY()

void vtkChartXYZ::LookUpY ( )
protected

Adjust the rotation of the chart so that we are looking up the Y axis.

◆ LookUpZ()

void vtkChartXYZ::LookUpZ ( )
protected

Adjust the rotation of the chart so that we are looking up the Z axis.

◆ CheckForSceneResize()

bool vtkChartXYZ::CheckForSceneResize ( )
protected

Check to see if the scene changed size since the last render.

◆ RescaleAxes()

void vtkChartXYZ::RescaleAxes ( )
protected

Scale the axes up or down in response to a scene resize.

◆ ScaleUpAxes()

void vtkChartXYZ::ScaleUpAxes ( )
protected

Scale up the axes when the scene gets larger.

◆ ScaleDownAxes()

void vtkChartXYZ::ScaleDownAxes ( )
protected

Scale down the axes when the scene gets smaller.

◆ ZoomAxes()

void vtkChartXYZ::ZoomAxes ( int  delta)
protected

Change the scaling of the axes by a specified amount.

◆ InitializeAxesBoundaryPoints()

void vtkChartXYZ::InitializeAxesBoundaryPoints ( )
protected

Initialize a list of "test points".

These are used to determine whether or not the chart fits completely within the bounds of the current scene.

◆ InitializeFutureBox()

void vtkChartXYZ::InitializeFutureBox ( )
protected

Initialize the "future box" transform.

This transform is a duplicate of the Box transform, which dictates how the chart's axes should be drawn. In ScaleUpAxes() and ScaleDownAxes(), we incrementally change the scaling of the FutureBox transform to determine how much we need to zoom in or zoom out to fit the chart within the newly resized scene. Using a separate transform for this process allows us to resize the Box in a single step.

◆ ComputeDataBounds()

void vtkChartXYZ::ComputeDataBounds ( )
protected

Compute a bounding box for the data that is rendered within the axes.

◆ DrawAxes()

void vtkChartXYZ::DrawAxes ( vtkContext3D context)
protected

Draw the cube axes of this chart.

◆ DetermineWhichAxesToLabel()

void vtkChartXYZ::DetermineWhichAxesToLabel ( )
protected

For each of the XYZ dimensions, find the axis line that is furthest from the rendered data.

◆ NewDetermineWhichAxesToLabel()

void vtkChartXYZ::NewDetermineWhichAxesToLabel ( )
protected

New style axis labelling, ensuring labelling is always at the edges of the chart in the most sensible places.

◆ LegacyDetermineWhichAxesToLabel()

void vtkChartXYZ::LegacyDetermineWhichAxesToLabel ( )
protected

Old-style axis labelling, for compatibility; labelling may occur in less optimal places e.g.

on inner or back edges of the chart.

◆ DrawTickMarks()

void vtkChartXYZ::DrawTickMarks ( vtkContext2D painter)
protected

Draw tick marks and tick mark labels along the axes.

◆ DrawAxesLabels()

void vtkChartXYZ::DrawAxesLabels ( vtkContext2D painter)
protected

Label the axes.

◆ GetOffsetForAxisLabel()

void vtkChartXYZ::GetOffsetForAxisLabel ( int  axis,
float *  bounds,
float *  offset 
)
protected

Compute how some text should be offset from an axis.

The parameter bounds contains the bounding box of the text to be rendered. The result is stored in the parameter offset.

◆ CalculateNiceMinMax()

double vtkChartXYZ::CalculateNiceMinMax ( double &  min,
double &  max,
int  axis 
)
protected

Calculate the next "nicest" numbers above and below the current minimum.

Returns
the "nice" spacing of the numbers. This function was mostly copied from vtkAxis.

◆ GetClippingPlaneEquation()

void vtkChartXYZ::GetClippingPlaneEquation ( int  i,
double *  planeEquation 
)
protected

Get the equation for the ith face of our bounding cube.

◆ GetMarginLeft()

std::size_t vtkChartXYZ::GetMarginLeft ( ) const
protected

Gets the current margin left in pixels irrespective of the size-strategy used.

◆ GetMarginBottom()

std::size_t vtkChartXYZ::GetMarginBottom ( ) const
protected

Gets the current margin top in pixels irrespective of the size-strategy used.

◆ GetPlotWidth()

std::size_t vtkChartXYZ::GetPlotWidth ( ) const
protected

Gets the current width of the plot in pixels irrespective of the size-strategy used.

◆ GetPlotHeight()

std::size_t vtkChartXYZ::GetPlotHeight ( ) const
protected

Gets the current height of the plot in pixels irrespective of the size-strategy used.

Member Data Documentation

◆ 

enum { ... } vtkChartXYZ::SizeStrategy

Specifies how to calculate the size of the chart in function of the size of the scene.

◆ Margins

vtkVector4i vtkChartXYZ::Margins = vtkVector4i(40, 40, 40, 40)
protected

The margins in pixels for the box ordered top right bottom left Applicable only when SizeStrategy == USE_MARGINS_AND_SCENE_SIZE.

Definition at line 519 of file vtkChartXYZ.h.

◆ Geometry

vtkRectf vtkChartXYZ::Geometry = vtkRectf(40, 40, 120, 120)
protected

The size and position of this chart.

Applicable only when SizeStrategy == USE_GEOMETRY

Definition at line 525 of file vtkChartXYZ.h.

◆ Axes

std::vector<vtkSmartPointer<vtkAxis> > vtkChartXYZ::Axes
protected

The 3 axes of this chart.

Definition at line 530 of file vtkChartXYZ.h.

◆ AutoRotate

bool vtkChartXYZ::AutoRotate = false
protected

This boolean indicates whether or not we're using this chart to rotate on a timer.

Definition at line 536 of file vtkChartXYZ.h.

◆ IsX

bool vtkChartXYZ::IsX = false
protected

When we're in AutoRotate mode, this boolean tells us if we should rotate about the X axis or the Y axis.

Definition at line 542 of file vtkChartXYZ.h.

◆ Angle

double vtkChartXYZ::Angle = 0
protected

When we're in AutoRotate mode, this value tells the chart how much it should be rotated.

Definition at line 548 of file vtkChartXYZ.h.

◆ DrawAxesDecoration

bool vtkChartXYZ::DrawAxesDecoration = true
protected

This boolean indicates whether or not we should draw tick marks and axes labels.

Definition at line 554 of file vtkChartXYZ.h.

◆ FitToScene

bool vtkChartXYZ::FitToScene = true
protected

This boolean indicates whether or not we should automatically resize the chart so that it snugly fills up the scene.

Definition at line 560 of file vtkChartXYZ.h.

◆ ContextTransform

vtkNew<vtkTransform> vtkChartXYZ::ContextTransform
protected

This is the transform that is applied when rendering data from the plots.

Definition at line 565 of file vtkChartXYZ.h.

◆ PlotTransform

vtkNew<vtkTransform> vtkChartXYZ::PlotTransform
protected

This transform translates and scales the plots' data points so that they appear within the axes of this chart.

It is one of the factors that makes up the ContextTransform.

Definition at line 572 of file vtkChartXYZ.h.

◆ Box

vtkNew<vtkTransform> vtkChartXYZ::Box
protected

This is the transform that is applied when rendering data from the plots.

Definition at line 577 of file vtkChartXYZ.h.

◆ Rotation

vtkNew<vtkTransform> vtkChartXYZ::Rotation
protected

This transform keeps track of how the chart has been rotated.

Definition at line 582 of file vtkChartXYZ.h.

◆ Translation

vtkNew<vtkTransform> vtkChartXYZ::Translation
protected

This transform keeps track of how the data points have been panned within the chart.

Definition at line 588 of file vtkChartXYZ.h.

◆ Scale

vtkNew<vtkTransform> vtkChartXYZ::Scale
protected

This transform keeps track of how the data points have been scaled (zoomed in or zoomed out) within the chart.

Definition at line 594 of file vtkChartXYZ.h.

◆ BoxScale

vtkNew<vtkTransform> vtkChartXYZ::BoxScale
protected

This transform keeps track of how the axes have been scaled (zoomed in or zoomed out).

Definition at line 600 of file vtkChartXYZ.h.

◆ FutureBox

vtkNew<vtkTransform> vtkChartXYZ::FutureBox
protected

This transform is initialized as a copy of Box.

It is used within ScaleUpAxes() and ScaleDownAxes() to figure out how much we need to zoom in or zoom out to fit our chart within the newly resized scene.

Definition at line 607 of file vtkChartXYZ.h.

◆ FutureBoxScale

vtkNew<vtkTransform> vtkChartXYZ::FutureBoxScale
protected

This transform keeps track of the Scale of the FutureBox transform.

Definition at line 612 of file vtkChartXYZ.h.

◆ Pen

vtkNew<vtkPen> vtkChartXYZ::Pen
protected

This is the pen that is used to draw data from the plots.

Definition at line 617 of file vtkChartXYZ.h.

◆ AxisPen

vtkNew<vtkPen> vtkChartXYZ::AxisPen
protected

This is the pen that is used to draw the axes.

Definition at line 622 of file vtkChartXYZ.h.

◆ Link

vtkSmartPointer<vtkAnnotationLink> vtkChartXYZ::Link
protected

This link is used to share selected points with other classes.

Definition at line 627 of file vtkChartXYZ.h.

◆ Plots

std::vector<vtkPlot3D*> vtkChartXYZ::Plots
protected

The plots that are drawn within this chart.

Definition at line 632 of file vtkChartXYZ.h.

◆ FreePlaces

std::vector<vtkIdType> vtkChartXYZ::FreePlaces
protected

These plots got removed (from Plots), try to reuse the free spot.

Definition at line 637 of file vtkChartXYZ.h.

◆ AxesTextProperty

vtkNew<vtkTextProperty> vtkChartXYZ::AxesTextProperty
protected

The text properties of the axes.

Definition at line 642 of file vtkChartXYZ.h.

◆ XAxisLabel

std::string vtkChartXYZ::XAxisLabel
protected

The label for the X Axis.

Definition at line 647 of file vtkChartXYZ.h.

◆ YAxisLabel

std::string vtkChartXYZ::YAxisLabel
protected

The label for the Y Axis.

Definition at line 652 of file vtkChartXYZ.h.

◆ ZAxisLabel

std::string vtkChartXYZ::ZAxisLabel
protected

The label for the Z Axis.

Definition at line 657 of file vtkChartXYZ.h.

◆ EnsureOuterEdgeAxisLabelling

bool vtkChartXYZ::EnsureOuterEdgeAxisLabelling = false
protected

If set to true, use the new behaviour of ensuring that axis labels are on the outer edges of the chart.

If false, the legacy behaviour will be used where axis labels can occur on inner or back edges of the chart.

Definition at line 664 of file vtkChartXYZ.h.

◆ BoundingCube

vtkNew<vtkPlaneCollection> vtkChartXYZ::BoundingCube
protected

The six planes that define the bounding cube of our 3D axes.

Definition at line 668 of file vtkChartXYZ.h.

◆ AxesBoundaryPoints

float vtkChartXYZ::AxesBoundaryPoints[8][3]
protected

Points used to determine whether the axes will fit within the scene as currently sized, regardless of rotation.

Definition at line 674 of file vtkChartXYZ.h.

◆ TickLabelOffset

float vtkChartXYZ::TickLabelOffset[3][2]
protected

This member variable stores the size of the tick labels for each axis.

It is used to determine the position of the axis labels.

Definition at line 680 of file vtkChartXYZ.h.

◆ SceneHeight

int vtkChartXYZ::SceneHeight
protected

The height of the scene, as of the most recent call to Paint().

Definition at line 685 of file vtkChartXYZ.h.

◆ SceneWidth

int vtkChartXYZ::SceneWidth
protected

The weight of the scene, as of the most recent call to Paint().

Definition at line 690 of file vtkChartXYZ.h.

◆ XAxisToLabel

int vtkChartXYZ::XAxisToLabel[3]
protected

Which line to label.

Definition at line 696 of file vtkChartXYZ.h.

◆ YAxisToLabel

int vtkChartXYZ::YAxisToLabel[3]
protected

Which line to label.

Definition at line 697 of file vtkChartXYZ.h.

◆ ZAxisToLabel

int vtkChartXYZ::ZAxisToLabel[3]
protected

Which line to label.

Definition at line 698 of file vtkChartXYZ.h.

◆ DirectionToData

int vtkChartXYZ::DirectionToData[3]
protected

What direction the data is from each labeled axis line.

Definition at line 704 of file vtkChartXYZ.h.

◆ DataBounds

double vtkChartXYZ::DataBounds[4]
protected

A bounding box surrounding the currently rendered data points.

Definition at line 709 of file vtkChartXYZ.h.

◆ ClippingPlanesEnabled

bool vtkChartXYZ::ClippingPlanesEnabled = true
protected

Hide data outside the box.

Definition at line 714 of file vtkChartXYZ.h.

◆ ScaleBoxWithPlot

bool vtkChartXYZ::ScaleBoxWithPlot = true
protected

When rotating the mousewheel, scale not only the plot but also the box.

Definition at line 719 of file vtkChartXYZ.h.


The documentation for this class was generated from the following file: