VTK  9.3.20240424
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
vtkChartBox Class Reference

Factory class for drawing box plot charts. More...

#include <vtkChartBox.h>

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

Public Types

typedef vtkChart Superclass
 
- Public Types inherited from vtkChart
enum  {
  LINE , POINTS , BAR , STACKED ,
  BAG , FUNCTIONALBAG , AREA
}
 Enum of the available chart types. More...
 
enum  {
  PAN = 0 , ZOOM , ZOOM_AXIS , SELECT ,
  SELECT_RECTANGLE = SELECT , SELECT_POLYGON , CLICK_AND_DRAG , NOTIFY ,
  ACTION_TYPES_COUNT
}
 Enum of valid chart action types. More...
 
enum  EventIds { UpdateRange = 1002 }
 Enum of event type that are triggered by the charts. More...
 
enum  { SELECTION_ROWS , SELECTION_PLOTS , SELECTION_COLUMNS }
 Enumeration of the possible selection methods in a chart. More...
 
enum  { FILL_SCENE , FILL_RECT , AXES_TO_RECT }
 Enum of the available layout strategies for the charts. More...
 
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.
 
vtkChartBoxNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses.
 
void Update () override
 Perform any updates to the item that may be necessary before rendering.
 
bool Paint (vtkContext2D *painter) override
 Paint event for the chart, called whenever the chart needs to be drawn.
 
void SetColumnVisibilityAll (bool visible)
 Set the visibility of all columns (true will make them all visible, false will remove all visible columns).
 
vtkIdType GetColumnId (const vtkStdString &name)
 Get the input table column id of a column by its name.
 
virtual int GetSelectedColumn ()
 
virtual void SetSelectedColumn (int)
 
vtkPlotGetPlot (vtkIdType index) override
 Get the plot at the specified index, returns null if the index is invalid.
 
vtkIdType GetNumberOfPlots () override
 Get the number of plots the chart contains.
 
virtual vtkAxisGetYAxis ()
 Get the chart Y axis.
 
virtual float GetXPosition (int index)
 Get the column X position by index in the visible set.
 
virtual vtkIdType GetNumberOfVisibleColumns ()
 Get the number of visible box plots in the current chart.
 
virtual void SetPlot (vtkPlotBox *plot)
 Set plot to use for the chart.
 
bool Hit (const vtkContextMouseEvent &mouse) override
 Return true if the supplied x, y coordinate is inside the item.
 
bool MouseMoveEvent (const vtkContextMouseEvent &mouse) override
 Mouse move event.
 
bool MouseButtonPressEvent (const vtkContextMouseEvent &mouse) override
 Mouse button down event.
 
bool MouseButtonReleaseEvent (const vtkContextMouseEvent &mouse) override
 Mouse button release event.
 
virtual void SetTooltip (vtkTooltipItem *tooltip)
 Set the vtkTooltipItem object that will be displayed by the chart.
 
virtual vtkTooltipItemGetTooltip ()
 Get the vtkTooltipItem object that will be displayed by the chart.
 
virtual void SetTooltipInfo (const vtkContextMouseEvent &, const vtkVector2d &, vtkIdType, vtkPlot *, vtkIdType segmentIndex=-1)
 Set the information passed to the tooltip.
 
void SetSize (const vtkRectf &rect) override
 Calls superclass implementation and sets GeometryValid to False, causing the chart's geometry to be updated on the next Paint call.
 
void SetGeometry (int arg1, int arg2) override
 Calls superclass implementation and sets GeometryValid to False, causing the chart's geometry to be updated on the next Paint call.
 
void SetLayoutStrategy (int strategy) override
 Calls superclass implementation and sets GeometryValid to False, causing the chart's geometry to be updated on the next Paint call.
 
void SetColumnVisibility (const vtkStdString &name, bool visible)
 Set the visibility of the specified column.
 
void SetColumnVisibility (vtkIdType column, bool visible)
 Set the visibility of the specified column.
 
bool GetColumnVisibility (const vtkStdString &name)
 Get the visibility of the specified column.
 
bool GetColumnVisibility (vtkIdType column)
 Get the visibility of the specified column.
 
virtual vtkStringArrayGetVisibleColumns ()
 Get a list of the columns, and the order in which they are displayed.
 
- Public Member Functions inherited from vtkChart
virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class.
 
vtkChartNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses.
 
bool Paint (vtkContext2D *painter) override=0
 Paint event for the chart, called whenever the chart needs to be drawn.
 
virtual vtkPlotAddPlot (int type)
 Add a plot to the chart, defaults to using the name of the y column.
 
virtual vtkIdType AddPlot (vtkPlot *plot)
 Add a plot to the chart.
 
virtual bool RemovePlot (vtkIdType index)
 Remove the plot at the specified index, returns true if successful, false if the index was invalid.
 
virtual bool RemovePlotInstance (vtkPlot *plot)
 Remove the given plot.
 
virtual void ClearPlots ()
 Remove all plots from the chart.
 
virtual vtkPlotGetPlot (vtkIdType index)
 Get the plot at the specified index, returns null if the index is invalid.
 
virtual vtkIdType GetNumberOfPlots ()
 Get the number of plots the chart contains.
 
virtual vtkAxisGetAxis (int axisIndex)
 Get the axis specified by axisIndex.
 
virtual void SetAxis (int axisIndex, vtkAxis *)
 Set the axis specified by axisIndex.
 
virtual vtkIdType GetNumberOfAxes ()
 Get the number of axes in the current chart.
 
virtual void RecalculateBounds ()
 Request that the chart recalculates the range of its axes.
 
virtual void SetAnnotationLink (vtkAnnotationLink *link)
 Set the vtkAnnotationLink for the chart.
 
virtual vtkChartLegendGetLegend ()
 Get the legend for the chart, if available.
 
void SetBorders (int left, int bottom, int right, int top)
 Set/get the borders of the chart (space in pixels around the chart).
 
virtual void SetSize (const vtkRectf &rect)
 Set the size of the chart.
 
vtkRectf GetSize ()
 Get the current size of the chart.
 
virtual void SetActionToButton (int action, int button)
 Assign action types to mouse buttons.
 
virtual int GetActionToButton (int action)
 Get the mouse button associated with the supplied action.
 
virtual void SetClickActionToButton (int action, int button)
 Assign action types to single mouse clicks.
 
virtual int GetClickActionToButton (int action)
 Get the mouse button associated with the supplied click action.
 
virtual void SetSelectionMethod (int method)
 Set the selection method, which controls how selections are handled by the chart.
 
virtual int GetSelectionMethod ()
 Set the selection method, which controls how selections are handled by the chart.
 
virtual vtkAnnotationLinkGetAnnotationLink ()
 Get the vtkAnnotationLink for the chart.
 
void SetGeometry (int[2])
 Set/get the width and the height of the chart.
 
virtual int * GetGeometry ()
 Set/get the width and the height of the chart.
 
virtual void GetGeometry (int &, int &)
 Set/get the width and the height of the chart.
 
virtual void GetGeometry (int[2])
 Set/get the width and the height of the chart.
 
virtual void SetPoint1 (int, int)
 Set/get the first point in the chart (the bottom left).
 
void SetPoint1 (int[2])
 Set/get the first point in the chart (the bottom left).
 
virtual int * GetPoint1 ()
 Set/get the first point in the chart (the bottom left).
 
virtual void GetPoint1 (int &, int &)
 Set/get the first point in the chart (the bottom left).
 
virtual void GetPoint1 (int[2])
 Set/get the first point in the chart (the bottom left).
 
virtual void SetPoint2 (int, int)
 Set/get the second point in the chart (the top right).
 
void SetPoint2 (int[2])
 Set/get the second point in the chart (the top right).
 
virtual int * GetPoint2 ()
 Set/get the second point in the chart (the top right).
 
virtual void GetPoint2 (int &, int &)
 Set/get the second point in the chart (the top right).
 
virtual void GetPoint2 (int[2])
 Set/get the second point in the chart (the top right).
 
virtual void SetShowLegend (bool visible)
 Set/get whether the chart should draw a legend.
 
virtual bool GetShowLegend ()
 Set/get whether the chart should draw a legend.
 
virtual void SetTitle (const vtkStdString &title)
 Get/set the title text of the chart.
 
virtual vtkStdString GetTitle ()
 Get/set the title text of the chart.
 
virtual vtkTextPropertyGetTitleProperties ()
 Get the vtkTextProperty that governs how the chart title is displayed.
 
void SetBottomBorder (int border)
 Set/get the borders of the chart (space in pixels around the chart).
 
void SetTopBorder (int border)
 Set/get the borders of the chart (space in pixels around the chart).
 
void SetLeftBorder (int border)
 Set/get the borders of the chart (space in pixels around the chart).
 
void SetRightBorder (int border)
 Set/get the borders of the chart (space in pixels around the chart).
 
virtual int GetLayoutStrategy ()
 Set/get the layout strategy that should be used by the chart.
 
virtual void SetAutoSize (bool isAutoSized)
 Set/get whether the chart should automatically resize to fill the current render window.
 
virtual bool GetAutoSize ()
 Set/get whether the chart should automatically resize to fill the current render window.
 
virtual void SetRenderEmpty (bool)
 Set/get whether the chart should still render its axes and decorations even if the chart has no visible plots.
 
virtual bool GetRenderEmpty ()
 Set/get whether the chart should still render its axes and decorations even if the chart has no visible plots.
 
void SetBackgroundBrush (vtkBrush *brush)
 Set/Get the brush to use for the background color.
 
vtkBrushGetBackgroundBrush ()
 Set/Get the brush to use for the background color.
 
virtual void SetSelectionMode (int)
 Set/get the Selection Mode that will be used by the chart while doing selection.
 
virtual int GetSelectionMode ()
 Set/get the Selection Mode that will be used by the chart while doing selection.
 
- Public Member Functions inherited from vtkContextItem
virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class.
 
vtkContextItemNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses.
 
virtual void SetTransform (vtkContextTransform *)
 Set the transform of the item.
 
virtual double GetOpacity ()
 Get the opacity of the item.
 
virtual void SetOpacity (double)
 Set the opacity of the item.
 
- Public Member Functions inherited from vtkAbstractContextItem
virtual vtkTypeBool IsA (const char *type)
 Return 1 if this class is the same type of (or a subclass of) the named class.
 
vtkAbstractContextItemNewInstance () const
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses.
 
virtual void Update ()
 Perform any updates to the item that may be necessary before rendering.
 
virtual bool Paint (vtkContext2D *painter)
 Paint event for the item, called whenever the item needs to be drawn.
 
virtual bool PaintChildren (vtkContext2D *painter)
 Paint the children of the item, should be called whenever the children need to be rendered.
 
virtual void ReleaseGraphicsResources ()
 Release graphics resources hold by the item.
 
vtkIdType AddItem (vtkAbstractContextItem *item)
 Add child items to this item.
 
bool RemoveItem (vtkAbstractContextItem *item)
 Remove child item from this item.
 
bool RemoveItem (vtkIdType index)
 Remove child item from this item.
 
vtkAbstractContextItemGetItem (vtkIdType index)
 Get the item at the specified index.
 
vtkIdType GetItemIndex (vtkAbstractContextItem *item)
 Get the index of the specified item in itemIndex.
 
vtkIdType GetNumberOfItems ()
 Get the number of child items.
 
void ClearItems ()
 Remove all child items from this item.
 
vtkIdType Raise (vtkIdType index)
 Raises the child to the top of the item's stack.
 
virtual vtkIdType StackAbove (vtkIdType index, vtkIdType under)
 Raises the child above the under sibling.
 
vtkIdType Lower (vtkIdType index)
 Lowers the child to the bottom of the item's stack.
 
virtual vtkIdType StackUnder (vtkIdType child, vtkIdType above)
 Lowers the child under the above sibling.
 
virtual bool Hit (const vtkContextMouseEvent &mouse)
 Return true if the supplied x, y coordinate is inside the item.
 
virtual vtkAbstractContextItemGetPickedItem (const vtkContextMouseEvent &mouse)
 Return the item under the mouse.
 
virtual bool MouseEnterEvent (const vtkContextMouseEvent &mouse)
 Mouse enter event.
 
virtual bool MouseMoveEvent (const vtkContextMouseEvent &mouse)
 Mouse move event.
 
virtual bool MouseLeaveEvent (const vtkContextMouseEvent &mouse)
 Mouse leave event.
 
virtual bool MouseButtonPressEvent (const vtkContextMouseEvent &mouse)
 Mouse button down event Return true if the item holds the event, false if the event can be propagated to other items.
 
virtual bool MouseButtonReleaseEvent (const vtkContextMouseEvent &mouse)
 Mouse button release event.
 
virtual bool MouseDoubleClickEvent (const vtkContextMouseEvent &mouse)
 Mouse button double click event.
 
virtual bool MouseWheelEvent (const vtkContextMouseEvent &mouse, int delta)
 Mouse wheel event, positive delta indicates forward movement of the wheel.
 
virtual bool KeyPressEvent (const vtkContextKeyEvent &key)
 Key press event.
 
virtual bool KeyReleaseEvent (const vtkContextKeyEvent &key)
 Key release event.
 
virtual void SetScene (vtkContextScene *scene)
 Set the vtkContextScene for the item, always set for an item in a scene.
 
vtkContextSceneGetScene ()
 Get the vtkContextScene for the item, always set for an item in a scene.
 
virtual void SetParent (vtkAbstractContextItem *parent)
 Set the parent item.
 
vtkAbstractContextItemGetParent ()
 Get the parent item.
 
virtual vtkVector2f MapToParent (const vtkVector2f &point)
 Maps the point to the parent coordinate system.
 
virtual vtkVector2f MapFromParent (const vtkVector2f &point)
 Maps the point from the parent coordinate system.
 
virtual vtkVector2f MapToScene (const vtkVector2f &point)
 Maps the point to the scene coordinate system.
 
virtual vtkVector2f MapFromScene (const vtkVector2f &point)
 Maps the point from the scene coordinate system.
 
virtual bool GetVisible ()
 Get the visibility of the item (should it be drawn).
 
virtual void SetVisible (bool)
 Set the visibility of the item (should it be drawn).
 
virtual bool GetInteractive ()
 Get if the item is interactive (should respond to mouse events).
 
virtual void SetInteractive (bool)
 Set if the item is interactive (should respond to mouse events).
 
- Public Member Functions inherited from vtkObject
 vtkBaseTypeMacro (vtkObject, vtkObjectBase)
 
virtual void DebugOn ()
 Turn debugging output on.
 
virtual void DebugOff ()
 Turn debugging output off.
 
bool GetDebug ()
 Get the value of the debug flag.
 
void SetDebug (bool debugFlag)
 Set the value of the debug flag.
 
virtual void Modified ()
 Update the modification time for this object.
 
virtual vtkMTimeType GetMTime ()
 Return this object's modified time.
 
void PrintSelf (ostream &os, vtkIndent indent) override
 Methods invoked by print to print information about the object including superclasses.
 
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.
 
unsigned long AddObserver (unsigned long event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
unsigned long AddObserver (const char *event, vtkCommand *, float priority=0.0f)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
vtkCommandGetCommand (unsigned long tag)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
void RemoveObserver (vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
void RemoveObservers (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
void RemoveObservers (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
vtkTypeBool HasObserver (unsigned long event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
vtkTypeBool HasObserver (const char *event, vtkCommand *)
 Allow people to add/remove/invoke observers (callbacks) to any VTK object.
 
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.
 
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.
 
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.
 
vtkTypeBool InvokeEvent (unsigned long event, void *callData)
 This method invokes an event and return whether the event was aborted or not.
 
vtkTypeBool InvokeEvent (const char *event, void *callData)
 This method invokes an event and return whether the event was aborted or not.
 
virtual void SetObjectName (const std::string &objectName)
 Set/get the name of this object for reporting purposes.
 
virtual std::string GetObjectName () const
 Set/get the name of this object for reporting purposes.
 
- Public Member Functions inherited from vtkObjectBase
const char * GetClassName () const
 Return the class name as a string.
 
virtual std::string GetObjectDescription () const
 The object description printed in messages and PrintSelf output.
 
virtual vtkTypeBool IsA (const char *name)
 Return 1 if this class is the same type of (or a subclass of) the named class.
 
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).
 
virtual void Delete ()
 Delete a VTK object.
 
virtual void FastDelete ()
 Delete a reference to this object.
 
void InitializeObjectBase ()
 
void Print (ostream &os)
 Print an object to an ostream.
 
void Register (vtkObjectBase *o)
 Increase the reference count (mark as used by another object).
 
virtual void UnRegister (vtkObjectBase *o)
 Decrease the reference count (release by another object).
 
int GetReferenceCount ()
 Return the current reference count of this object.
 
void SetReferenceCount (int)
 Sets the reference count.
 
bool GetIsInMemkind () const
 A local state flag that remembers whether this object lives in the normal or extended memory space.
 
virtual void PrintHeader (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses.
 
virtual void PrintTrailer (ostream &os, vtkIndent indent)
 Methods invoked by print to print information about the object including superclasses.
 
virtual bool UsesGarbageCollector () const
 Indicate whether the class uses vtkGarbageCollector or not.
 

Static Public Member Functions

static vtkTypeBool IsTypeOf (const char *type)
 
static vtkChartBoxSafeDownCast (vtkObjectBase *o)
 
static vtkChartBoxNew ()
 Creates a box chart.
 
- Static Public Member Functions inherited from vtkChart
static vtkTypeBool IsTypeOf (const char *type)
 
static vtkChartSafeDownCast (vtkObjectBase *o)
 
- 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.
 
static void BreakOnError ()
 This method is called when vtkErrorMacro executes.
 
static void SetGlobalWarningDisplay (vtkTypeBool val)
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
static void GlobalWarningDisplayOn ()
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
static void GlobalWarningDisplayOff ()
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
static vtkTypeBool GetGlobalWarningDisplay ()
 This is a global flag that controls whether any debug, warning or error messages are displayed.
 
- 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.
 
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).
 
static vtkObjectBaseNew ()
 Create an object with Debug turned off, modified time initialized to zero, and reference counting on.
 
static void SetMemkindDirectory (const char *directoryname)
 The name of a directory, ideally mounted -o dax, to memory map an extended memory space within.
 
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.
 

Protected Member Functions

virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkChartBox ()
 
 ~vtkChartBox () override
 
void ResetSelection ()
 
void UpdateGeometry (vtkContext2D *)
 
void CalculatePlotTransform ()
 
void SwapAxes (int a1, int a2)
 
bool LocatePointInPlots (const vtkContextMouseEvent &mouse, int invokeEvent=-1)
 Try to locate a point within the plots to display in a tooltip.
 
int LocatePointInPlot (const vtkVector2f &position, const vtkVector2f &tolerance, vtkVector2f &plotPos, vtkPlot *plot, vtkIdType &segmentId)
 
- Protected Member Functions inherited from vtkChart
virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkChart ()
 
 ~vtkChart () override
 
bool CalculatePlotTransform (vtkAxis *x, vtkAxis *y, vtkTransform2D *transform)
 Given the x and y vtkAxis, and a transform, calculate the transform that the points in a chart would need to be drawn within the axes.
 
bool CalculateUnscaledPlotTransform (vtkAxis *x, vtkAxis *y, vtkTransform2D *transform)
 Calculate the unshifted, and unscaled plot transform for the x and y axis.
 
void AttachAxisRangeListener (vtkAxis *)
 Attach axis range listener so we can forward those events at the chart level.
 
void AxisRangeForwarderCallback (vtkObject *, unsigned long, void *)
 
- Protected Member Functions inherited from vtkContextItem
virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkContextItem ()=default
 
 ~vtkContextItem () override
 
- Protected Member Functions inherited from vtkAbstractContextItem
virtual vtkObjectBaseNewInstanceInternal () const
 
 vtkAbstractContextItem ()
 
 ~vtkAbstractContextItem () override
 
virtual void ReleaseGraphicsCache ()
 Release cache entries created by this context item.
 
- 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.
 
void InternalReleaseFocus ()
 These methods allow a command to exclusively grab all events.
 
- Protected Member Functions inherited from vtkObjectBase
 vtkObjectBase ()
 
virtual ~vtkObjectBase ()
 
virtual void RegisterInternal (vtkObjectBase *, vtkTypeBool check)
 
virtual void UnRegisterInternal (vtkObjectBase *, vtkTypeBool check)
 
virtual void ReportReferences (vtkGarbageCollector *)
 
virtual void ObjectFinalize ()
 
 vtkObjectBase (const vtkObjectBase &)
 
void operator= (const vtkObjectBase &)
 

Protected Attributes

bool GeometryValid
 
vtkIdTypeArraySelection
 Selected indices for the table the plot is rendering.
 
vtkStringArrayVisibleColumns
 A list of the visible columns in the chart.
 
vtkTimeStamp BuildTime
 The point cache is marked dirty until it has been initialized.
 
vtkSmartPointer< vtkTooltipItemTooltip
 The tooltip item for the chart - can be used to display extra information.
 
Private * Storage
 
int SelectedColumn
 Index of the selected column in the visible columns list.
 
float SelectedColumnDelta
 Index of the selected column in the visible columns list.
 
- Protected Attributes inherited from vtkChart
vtkAnnotationLinkAnnotationLink
 Our annotation link, used for sharing selections etc.
 
int Geometry [2]
 The width and the height of the chart.
 
int Point1 [2]
 The position of the lower left corner of the chart.
 
int Point2 [2]
 The position of the upper right corner of the chart.
 
int Borders [4]
 The borders around the chart.
 
bool ShowLegend
 Display the legend?
 
vtkStdString Title
 The title of the chart.
 
vtkTextPropertyTitleProperties
 The text properties associated with the chart.
 
vtkRectf Size
 
int LayoutStrategy
 
bool RenderEmpty
 
vtkSmartPointer< vtkBrushBackgroundBrush
 Brush to use for drawing the background.
 
int SelectionMode
 
int SelectionMethod
 
MouseActions Actions
 
MouseClickActions ActionsClick
 
- 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.
 
vtkAbstractContextItemParent
 Point to the parent item - can be null.
 
vtkContextScenePrivateChildren
 This structure provides a list of children, along with convenience functions to paint the children etc.
 
bool Visible
 Store the visibility of the item (default is true).
 
bool Interactive
 Store whether the item should respond to interactions (default is true).
 
- 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 box plot charts.

This defines the interface for a box plot chart.

Online Examples:

Tests:
vtkChartBox (Tests)

Definition at line 47 of file vtkChartBox.h.

Member Typedef Documentation

◆ Superclass

Definition at line 50 of file vtkChartBox.h.

Constructor & Destructor Documentation

◆ vtkChartBox()

vtkChartBox::vtkChartBox ( )
protected

◆ ~vtkChartBox()

vtkChartBox::~vtkChartBox ( )
overrideprotected

Member Function Documentation

◆ IsTypeOf()

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

◆ IsA()

virtual vtkTypeBool vtkChartBox::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 vtkChart.

◆ SafeDownCast()

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

◆ NewInstanceInternal()

virtual vtkObjectBase * vtkChartBox::NewInstanceInternal ( ) const
protectedvirtual

Reimplemented from vtkChart.

◆ NewInstance()

vtkChartBox * vtkChartBox::NewInstance ( ) const

◆ PrintSelf()

void vtkChartBox::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 vtkChart.

◆ New()

static vtkChartBox * vtkChartBox::New ( )
static

Creates a box chart.

◆ Update()

void vtkChartBox::Update ( )
overridevirtual

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

The scene should take care of calling this on all items before their Paint function is invoked.

Reimplemented from vtkAbstractContextItem.

◆ Paint()

bool vtkChartBox::Paint ( vtkContext2D painter)
overridevirtual

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

Implements vtkChart.

◆ SetColumnVisibility() [1/2]

void vtkChartBox::SetColumnVisibility ( const vtkStdString name,
bool  visible 
)

Set the visibility of the specified column.

◆ SetColumnVisibility() [2/2]

void vtkChartBox::SetColumnVisibility ( vtkIdType  column,
bool  visible 
)

Set the visibility of the specified column.

◆ SetColumnVisibilityAll()

void vtkChartBox::SetColumnVisibilityAll ( bool  visible)

Set the visibility of all columns (true will make them all visible, false will remove all visible columns).

◆ GetColumnVisibility() [1/2]

bool vtkChartBox::GetColumnVisibility ( const vtkStdString name)

Get the visibility of the specified column.

◆ GetColumnVisibility() [2/2]

bool vtkChartBox::GetColumnVisibility ( vtkIdType  column)

Get the visibility of the specified column.

◆ GetColumnId()

vtkIdType vtkChartBox::GetColumnId ( const vtkStdString name)

Get the input table column id of a column by its name.

◆ GetVisibleColumns()

virtual vtkStringArray * vtkChartBox::GetVisibleColumns ( )
virtual

Get a list of the columns, and the order in which they are displayed.

◆ GetSelectedColumn()

virtual int vtkChartBox::GetSelectedColumn ( )
virtual

◆ SetSelectedColumn()

virtual void vtkChartBox::SetSelectedColumn ( int  )
virtual

◆ GetPlot()

vtkPlot * vtkChartBox::GetPlot ( vtkIdType  index)
overridevirtual

Get the plot at the specified index, returns null if the index is invalid.

Reimplemented from vtkChart.

◆ GetNumberOfPlots()

vtkIdType vtkChartBox::GetNumberOfPlots ( )
overridevirtual

Get the number of plots the chart contains.

Reimplemented from vtkChart.

◆ GetYAxis()

virtual vtkAxis * vtkChartBox::GetYAxis ( )
virtual

Get the chart Y axis.

◆ GetXPosition()

virtual float vtkChartBox::GetXPosition ( int  index)
virtual

Get the column X position by index in the visible set.

◆ GetNumberOfVisibleColumns()

virtual vtkIdType vtkChartBox::GetNumberOfVisibleColumns ( )
virtual

Get the number of visible box plots in the current chart.

◆ SetPlot()

virtual void vtkChartBox::SetPlot ( vtkPlotBox plot)
virtual

Set plot to use for the chart.

Since this type of chart can only contain one plot, this will replace the previous plot.

◆ Hit()

bool vtkChartBox::Hit ( const vtkContextMouseEvent mouse)
overridevirtual

Return true if the supplied x, y coordinate is inside the item.

Reimplemented from vtkAbstractContextItem.

◆ MouseMoveEvent()

bool vtkChartBox::MouseMoveEvent ( const vtkContextMouseEvent mouse)
overridevirtual

Mouse move event.

Reimplemented from vtkAbstractContextItem.

◆ MouseButtonPressEvent()

bool vtkChartBox::MouseButtonPressEvent ( const vtkContextMouseEvent mouse)
overridevirtual

Mouse button down event.

Reimplemented from vtkAbstractContextItem.

◆ MouseButtonReleaseEvent()

bool vtkChartBox::MouseButtonReleaseEvent ( const vtkContextMouseEvent mouse)
overridevirtual

Mouse button release event.

Reimplemented from vtkAbstractContextItem.

◆ SetTooltip()

virtual void vtkChartBox::SetTooltip ( vtkTooltipItem tooltip)
virtual

Set the vtkTooltipItem object that will be displayed by the chart.

◆ GetTooltip()

virtual vtkTooltipItem * vtkChartBox::GetTooltip ( )
virtual

Get the vtkTooltipItem object that will be displayed by the chart.

◆ SetTooltipInfo()

virtual void vtkChartBox::SetTooltipInfo ( const vtkContextMouseEvent ,
const vtkVector2d ,
vtkIdType  ,
vtkPlot ,
vtkIdType  segmentIndex = -1 
)
virtual

Set the information passed to the tooltip.

◆ SetSize()

void vtkChartBox::SetSize ( const vtkRectf rect)
overridevirtual

Calls superclass implementation and sets GeometryValid to False, causing the chart's geometry to be updated on the next Paint call.

Reimplemented from vtkChart.

◆ SetGeometry()

void vtkChartBox::SetGeometry ( int  arg1,
int  arg2 
)
overridevirtual

Calls superclass implementation and sets GeometryValid to False, causing the chart's geometry to be updated on the next Paint call.

Reimplemented from vtkChart.

◆ SetLayoutStrategy()

void vtkChartBox::SetLayoutStrategy ( int  strategy)
overridevirtual

Calls superclass implementation and sets GeometryValid to False, causing the chart's geometry to be updated on the next Paint call.

Reimplemented from vtkChart.

◆ ResetSelection()

void vtkChartBox::ResetSelection ( )
protected

◆ UpdateGeometry()

void vtkChartBox::UpdateGeometry ( vtkContext2D )
protected

◆ CalculatePlotTransform()

void vtkChartBox::CalculatePlotTransform ( )
protected

◆ SwapAxes()

void vtkChartBox::SwapAxes ( int  a1,
int  a2 
)
protected

◆ LocatePointInPlots()

bool vtkChartBox::LocatePointInPlots ( const vtkContextMouseEvent mouse,
int  invokeEvent = -1 
)
protected

Try to locate a point within the plots to display in a tooltip.

If invokeEvent is greater than 0, then an event will be invoked if a point is at that mouse position.

◆ LocatePointInPlot()

int vtkChartBox::LocatePointInPlot ( const vtkVector2f position,
const vtkVector2f tolerance,
vtkVector2f plotPos,
vtkPlot plot,
vtkIdType segmentId 
)
protected

Member Data Documentation

◆ Storage

Private* vtkChartBox::Storage
protected

Definition at line 202 of file vtkChartBox.h.

◆ GeometryValid

bool vtkChartBox::GeometryValid
protected

Definition at line 205 of file vtkChartBox.h.

◆ Selection

vtkIdTypeArray* vtkChartBox::Selection
protected

Selected indices for the table the plot is rendering.

Definition at line 210 of file vtkChartBox.h.

◆ VisibleColumns

vtkStringArray* vtkChartBox::VisibleColumns
protected

A list of the visible columns in the chart.

Definition at line 215 of file vtkChartBox.h.

◆ SelectedColumn

int vtkChartBox::SelectedColumn
protected

Index of the selected column in the visible columns list.

Definition at line 221 of file vtkChartBox.h.

◆ SelectedColumnDelta

float vtkChartBox::SelectedColumnDelta
protected

Index of the selected column in the visible columns list.

Definition at line 222 of file vtkChartBox.h.

◆ BuildTime

vtkTimeStamp vtkChartBox::BuildTime
protected

The point cache is marked dirty until it has been initialized.

Definition at line 228 of file vtkChartBox.h.

◆ Tooltip

vtkSmartPointer<vtkTooltipItem> vtkChartBox::Tooltip
protected

The tooltip item for the chart - can be used to display extra information.

Definition at line 233 of file vtkChartBox.h.


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