ActiViz .NET
5.8.0
|
vtkChart - Factory class for drawing 2D charts More...
Public Types | |
enum | BAR_WrapperEnum { BAR = 2, LINE = 0, POINTS = 1, STACKED = 3 } |
Undocumented Block. More... | |
enum | NOTIFY_WrapperEnum { NOTIFY = 3, PAN = 0, SELECT = 2, ZOOM = 1 } |
Undocumented Block. More... | |
Public Member Functions | |
vtkChart (IntPtr rawCppThis, bool callDisposalMethod, bool strong) | |
Automatically generated constructor - called from generated code. DO NOT call directly. | |
virtual vtkPlot | AddPlot (int type) |
Add a plot to the chart, defaults to using the name of the y column. | |
virtual int | AddPlot (vtkPlot plot) |
Add a plot to the chart. Return the index of the plot, -1 if it failed. | |
virtual void | ClearPlots () |
Remove all plots from the chart. | |
virtual int | GetActionToButton (int action) |
Get the mouse button associated with the supplied action. The mouse button enum is from vtkContextMouseEvent, and the action enum is from vtkChart. | |
virtual vtkAnnotationLink | GetAnnotationLink () |
Get the vtkAnnotationLink for the chart. | |
virtual bool | GetAutoSize () |
Set/get whether the chart should automatically resize to fill the current render window. Default is true. | |
virtual vtkAxis | GetAxis (int axisIndex) |
Get the axis specified by axisIndex. 0 is x, 1 is y. This should probably be improved either using a string or enum to select the axis. | |
virtual int | GetClickActionToButton (int action) |
Get the mouse button associated with the supplied click action. The mouse button enum is from vtkContextMouseEvent, and the action enum is from vtkChart. | |
virtual int[] | GetGeometry () |
Set/get the width and the height of the chart. | |
virtual void | GetGeometry (ref int _arg1, ref int _arg2) |
Set/get the width and the height of the chart. | |
virtual void | GetGeometry (IntPtr _arg) |
Set/get the width and the height of the chart. | |
virtual vtkChartLegend | GetLegend () |
Get the legend for the chart, if available. Can return NULL if there is no legend. | |
virtual int | GetNumberOfAxes () |
Get the number of axes in the current chart. | |
virtual int | GetNumberOfPlots () |
Get the number of plots the chart contains. | |
virtual vtkPlot | GetPlot (int index) |
Get the plot at the specified index, returns null if the index is invalid. | |
virtual int[] | GetPoint1 () |
Set/get the first point in the chart (the bottom left). | |
virtual void | GetPoint1 (ref int _arg1, ref int _arg2) |
Set/get the first point in the chart (the bottom left). | |
virtual void | GetPoint1 (IntPtr _arg) |
Set/get the first point in the chart (the bottom left). | |
virtual int[] | GetPoint2 () |
Set/get the second point in the chart (the top right). | |
virtual void | GetPoint2 (ref int _arg1, ref int _arg2) |
Set/get the second point in the chart (the top right). | |
virtual void | GetPoint2 (IntPtr _arg) |
Set/get the second point in the chart (the top right). | |
virtual bool | GetRenderEmpty () |
Set/get whether the chart should still render its axes and decorations even if the chart has no visible plots. Default is false (do not render an empty plot). | |
virtual bool | GetShowLegend () |
Set/get whether the chart should draw a legend. | |
virtual vtkTextProperty | GetTitleProperties () |
Get the vtkTextProperty that governs how the chart title is displayed. | |
override int | IsA (string type) |
Undocumented Block. | |
new vtkChart | NewInstance () |
Undocumented Block. | |
override bool | Paint (vtkContext2D painter) |
Paint event for the chart, called whenever the chart needs to be drawn. | |
virtual void | RecalculateBounds () |
Request that the chart recalculates the range of its axes. Especially useful in applications after the parameters of plots have been modified. | |
virtual bool | RemovePlot (int 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. Returns true if successful, false if the plot was not contained in this chart. Note, the base implementation of this method performs a linear search to locate the plot. | |
virtual void | SetActionToButton (int action, int button) |
Assign action types to mouse buttons. Available action types are PAN, ZOOM and SELECT in the chart enum, the default assigns the LEFT_BUTTON to PAN, MIDDLE_BUTTON to ZOOM and RIGHT_BUTTON to SELECT. Valid mouse enums are in the vtkContextMouseEvent class. | |
virtual void | SetAnnotationLink (vtkAnnotationLink link) |
Set the vtkAnnotationLink for the chart. | |
virtual void | SetAutoSize (bool _arg) |
Set/get whether the chart should automatically resize to fill the current render window. Default is true. | |
void | SetBorders (int left, int bottom, int right, int top) |
Set/get the borders of the chart (space in pixels around the chart). | |
void | SetBottomBorder (int border) |
Set/get the borders of the chart (space in pixels around the chart). | |
virtual void | SetClickActionToButton (int action, int button) |
Assign action types to single mouse clicks. Available action types are SELECT and NOTIFY in the chart enum. The default assigns the LEFT_BUTTON to NOTIFY, and the RIGHT_BUTTON to SELECT. | |
virtual void | SetGeometry (int _arg1, int _arg2) |
Set/get the width and the height of the chart. | |
void | SetGeometry (IntPtr _arg) |
Set/get the width and the height of the chart. | |
void | SetLeftBorder (int border) |
Set/get the borders of the chart (space in pixels around the chart). | |
virtual void | SetPoint1 (int _arg1, int _arg2) |
Set/get the first point in the chart (the bottom left). | |
void | SetPoint1 (IntPtr _arg) |
Set/get the first point in the chart (the bottom left). | |
virtual void | SetPoint2 (int _arg1, int _arg2) |
Set/get the second point in the chart (the top right). | |
void | SetPoint2 (IntPtr _arg) |
Set/get the second point in the chart (the top right). | |
virtual void | SetRenderEmpty (bool _arg) |
Set/get whether the chart should still render its axes and decorations even if the chart has no visible plots. Default is false (do not render an empty plot). | |
void | SetRightBorder (int border) |
Set/get the borders of the chart (space in pixels around the chart). | |
virtual void | SetShowLegend (bool visible) |
Set/get whether the chart should draw a legend. | |
void | SetTopBorder (int border) |
Set/get the borders of the chart (space in pixels around the chart). | |
Static Public Member Functions | |
static new int | IsTypeOf (string type) |
Undocumented Block. | |
static new vtkChart | SafeDownCast (vtkObjectBase o) |
Undocumented Block. | |
Public Attributes | |
new const string | MRFullTypeName = "Kitware.VTK.vtkChart" |
Automatically generated type registration mechanics. | |
Static Public Attributes | |
static new readonly string | MRClassNameKey = "8vtkChart" |
Automatically generated type registration mechanics. | |
Protected Member Functions | |
override void | Dispose (bool disposing) |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly. | |
Private Member Functions | |
static internal IntPtr | vtkChart_AddPlot_01 (HandleRef pThis, int type, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkChart_AddPlot_02 (HandleRef pThis, HandleRef plot) |
static internal void | vtkChart_ClearPlots_03 (HandleRef pThis) |
static internal int | vtkChart_GetActionToButton_04 (HandleRef pThis, int action) |
static internal IntPtr | vtkChart_GetAnnotationLink_05 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal byte | vtkChart_GetAutoSize_06 (HandleRef pThis) |
static internal IntPtr | vtkChart_GetAxis_07 (HandleRef pThis, int axisIndex, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkChart_GetClickActionToButton_08 (HandleRef pThis, int action) |
static internal IntPtr | vtkChart_GetGeometry_09 (HandleRef pThis) |
static internal void | vtkChart_GetGeometry_10 (HandleRef pThis, ref int _arg1, ref int _arg2) |
static internal void | vtkChart_GetGeometry_11 (HandleRef pThis, IntPtr _arg) |
static internal IntPtr | vtkChart_GetLegend_12 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkChart_GetNumberOfAxes_13 (HandleRef pThis) |
static internal int | vtkChart_GetNumberOfPlots_14 (HandleRef pThis) |
static internal IntPtr | vtkChart_GetPlot_15 (HandleRef pThis, int index, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal IntPtr | vtkChart_GetPoint1_16 (HandleRef pThis) |
static internal void | vtkChart_GetPoint1_17 (HandleRef pThis, ref int _arg1, ref int _arg2) |
static internal void | vtkChart_GetPoint1_18 (HandleRef pThis, IntPtr _arg) |
static internal IntPtr | vtkChart_GetPoint2_19 (HandleRef pThis) |
static internal void | vtkChart_GetPoint2_20 (HandleRef pThis, ref int _arg1, ref int _arg2) |
static internal void | vtkChart_GetPoint2_21 (HandleRef pThis, IntPtr _arg) |
static internal byte | vtkChart_GetRenderEmpty_22 (HandleRef pThis) |
static internal byte | vtkChart_GetShowLegend_23 (HandleRef pThis) |
static internal IntPtr | vtkChart_GetTitleProperties_24 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal int | vtkChart_IsA_25 (HandleRef pThis, string type) |
static internal int | vtkChart_IsTypeOf_26 (string type) |
static internal IntPtr | vtkChart_NewInstance_27 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal byte | vtkChart_Paint_28 (HandleRef pThis, HandleRef painter) |
static internal void | vtkChart_RecalculateBounds_29 (HandleRef pThis) |
static internal byte | vtkChart_RemovePlot_30 (HandleRef pThis, int index) |
static internal byte | vtkChart_RemovePlotInstance_31 (HandleRef pThis, HandleRef plot) |
static internal IntPtr | vtkChart_SafeDownCast_32 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount) |
static internal void | vtkChart_SetActionToButton_33 (HandleRef pThis, int action, int button) |
static internal void | vtkChart_SetAnnotationLink_34 (HandleRef pThis, HandleRef link) |
static internal void | vtkChart_SetAutoSize_35 (HandleRef pThis, byte _arg) |
static internal void | vtkChart_SetBorders_36 (HandleRef pThis, int left, int bottom, int right, int top) |
static internal void | vtkChart_SetBottomBorder_37 (HandleRef pThis, int border) |
static internal void | vtkChart_SetClickActionToButton_38 (HandleRef pThis, int action, int button) |
static internal void | vtkChart_SetGeometry_39 (HandleRef pThis, int _arg1, int _arg2) |
static internal void | vtkChart_SetGeometry_40 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkChart_SetLeftBorder_41 (HandleRef pThis, int border) |
static internal void | vtkChart_SetPoint1_42 (HandleRef pThis, int _arg1, int _arg2) |
static internal void | vtkChart_SetPoint1_43 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkChart_SetPoint2_44 (HandleRef pThis, int _arg1, int _arg2) |
static internal void | vtkChart_SetPoint2_45 (HandleRef pThis, IntPtr _arg) |
static internal void | vtkChart_SetRenderEmpty_46 (HandleRef pThis, byte _arg) |
static internal void | vtkChart_SetRightBorder_47 (HandleRef pThis, int border) |
static internal void | vtkChart_SetShowLegend_48 (HandleRef pThis, byte visible) |
static internal void | vtkChart_SetTopBorder_49 (HandleRef pThis, int border) |
Static Private Member Functions | |
static | vtkChart () |
Automatically generated type registration mechanics. |
vtkChart - Factory class for drawing 2D charts
Description This defines the interface for a chart.
static Kitware.VTK.vtkChart.vtkChart | ( | ) | [static, private] |
Automatically generated type registration mechanics.
Kitware.VTK.vtkChart.vtkChart | ( | IntPtr | rawCppThis, |
bool | callDisposalMethod, | ||
bool | strong | ||
) |
Automatically generated constructor - called from generated code. DO NOT call directly.
virtual vtkPlot Kitware.VTK.vtkChart.AddPlot | ( | int | type | ) | [virtual] |
Add a plot to the chart, defaults to using the name of the y column.
Reimplemented in Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartXY.
virtual int Kitware.VTK.vtkChart.AddPlot | ( | vtkPlot | plot | ) | [virtual] |
Add a plot to the chart. Return the index of the plot, -1 if it failed.
Reimplemented in Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartXY.
virtual void Kitware.VTK.vtkChart.ClearPlots | ( | ) | [virtual] |
Remove all plots from the chart.
Reimplemented in Kitware.VTK.vtkChartXY.
override void Kitware.VTK.vtkChart.Dispose | ( | bool | disposing | ) | [protected] |
Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.
Reimplemented from Kitware.VTK.vtkContextItem.
Reimplemented in Kitware.VTK.vtkChartHistogram2D, Kitware.VTK.vtkChartParallelCoordinates, Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartXY.
virtual int Kitware.VTK.vtkChart.GetActionToButton | ( | int | action | ) | [virtual] |
Get the mouse button associated with the supplied action. The mouse button enum is from vtkContextMouseEvent, and the action enum is from vtkChart.
virtual vtkAnnotationLink Kitware.VTK.vtkChart.GetAnnotationLink | ( | ) | [virtual] |
virtual bool Kitware.VTK.vtkChart.GetAutoSize | ( | ) | [virtual] |
Set/get whether the chart should automatically resize to fill the current render window. Default is true.
virtual vtkAxis Kitware.VTK.vtkChart.GetAxis | ( | int | axisIndex | ) | [virtual] |
Get the axis specified by axisIndex. 0 is x, 1 is y. This should probably be improved either using a string or enum to select the axis.
Reimplemented in Kitware.VTK.vtkChartXY, and Kitware.VTK.vtkChartParallelCoordinates.
virtual int Kitware.VTK.vtkChart.GetClickActionToButton | ( | int | action | ) | [virtual] |
Get the mouse button associated with the supplied click action. The mouse button enum is from vtkContextMouseEvent, and the action enum is from vtkChart.
virtual int [] Kitware.VTK.vtkChart.GetGeometry | ( | ) | [virtual] |
Set/get the width and the height of the chart.
virtual void Kitware.VTK.vtkChart.GetGeometry | ( | ref int | _arg1, |
ref int | _arg2 | ||
) | [virtual] |
Set/get the width and the height of the chart.
virtual void Kitware.VTK.vtkChart.GetGeometry | ( | IntPtr | _arg | ) | [virtual] |
Set/get the width and the height of the chart.
virtual vtkChartLegend Kitware.VTK.vtkChart.GetLegend | ( | ) | [virtual] |
Get the legend for the chart, if available. Can return NULL if there is no legend.
Reimplemented in Kitware.VTK.vtkChartXY, and Kitware.VTK.vtkChartPie.
virtual int Kitware.VTK.vtkChart.GetNumberOfAxes | ( | ) | [virtual] |
Get the number of axes in the current chart.
Reimplemented in Kitware.VTK.vtkChartXY, and Kitware.VTK.vtkChartParallelCoordinates.
virtual int Kitware.VTK.vtkChart.GetNumberOfPlots | ( | ) | [virtual] |
Get the number of plots the chart contains.
Reimplemented in Kitware.VTK.vtkChartXY, Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartParallelCoordinates.
virtual vtkPlot Kitware.VTK.vtkChart.GetPlot | ( | int | index | ) | [virtual] |
Get the plot at the specified index, returns null if the index is invalid.
Reimplemented in Kitware.VTK.vtkChartXY, Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartParallelCoordinates.
virtual int [] Kitware.VTK.vtkChart.GetPoint1 | ( | ) | [virtual] |
Set/get the first point in the chart (the bottom left).
virtual void Kitware.VTK.vtkChart.GetPoint1 | ( | ref int | _arg1, |
ref int | _arg2 | ||
) | [virtual] |
Set/get the first point in the chart (the bottom left).
virtual void Kitware.VTK.vtkChart.GetPoint1 | ( | IntPtr | _arg | ) | [virtual] |
Set/get the first point in the chart (the bottom left).
virtual int [] Kitware.VTK.vtkChart.GetPoint2 | ( | ) | [virtual] |
Set/get the second point in the chart (the top right).
virtual void Kitware.VTK.vtkChart.GetPoint2 | ( | ref int | _arg1, |
ref int | _arg2 | ||
) | [virtual] |
Set/get the second point in the chart (the top right).
virtual void Kitware.VTK.vtkChart.GetPoint2 | ( | IntPtr | _arg | ) | [virtual] |
Set/get the second point in the chart (the top right).
virtual bool Kitware.VTK.vtkChart.GetRenderEmpty | ( | ) | [virtual] |
Set/get whether the chart should still render its axes and decorations even if the chart has no visible plots. Default is false (do not render an empty plot).
Note that if you wish to render axes for an empty plot you should also set AutoSize to false, as that will hide all axes for an empty plot.
virtual bool Kitware.VTK.vtkChart.GetShowLegend | ( | ) | [virtual] |
Set/get whether the chart should draw a legend.
virtual vtkTextProperty Kitware.VTK.vtkChart.GetTitleProperties | ( | ) | [virtual] |
Get the vtkTextProperty that governs how the chart title is displayed.
override int Kitware.VTK.vtkChart.IsA | ( | string | type | ) | [virtual] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkContextItem.
Reimplemented in Kitware.VTK.vtkChartXY, Kitware.VTK.vtkChartPie, Kitware.VTK.vtkChartParallelCoordinates, and Kitware.VTK.vtkChartHistogram2D.
static new int Kitware.VTK.vtkChart.IsTypeOf | ( | string | type | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkContextItem.
Reimplemented in Kitware.VTK.vtkChartXY, Kitware.VTK.vtkChartPie, Kitware.VTK.vtkChartParallelCoordinates, and Kitware.VTK.vtkChartHistogram2D.
Undocumented Block.
Reimplemented from Kitware.VTK.vtkContextItem.
Reimplemented in Kitware.VTK.vtkChartXY, Kitware.VTK.vtkChartPie, Kitware.VTK.vtkChartParallelCoordinates, and Kitware.VTK.vtkChartHistogram2D.
override bool Kitware.VTK.vtkChart.Paint | ( | vtkContext2D | painter | ) | [virtual] |
Paint event for the chart, called whenever the chart needs to be drawn.
Reimplemented from Kitware.VTK.vtkAbstractContextItem.
Reimplemented in Kitware.VTK.vtkChartXY, Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartParallelCoordinates.
virtual void Kitware.VTK.vtkChart.RecalculateBounds | ( | ) | [virtual] |
Request that the chart recalculates the range of its axes. Especially useful in applications after the parameters of plots have been modified.
Reimplemented in Kitware.VTK.vtkChartXY, and Kitware.VTK.vtkChartParallelCoordinates.
virtual bool Kitware.VTK.vtkChart.RemovePlot | ( | int | index | ) | [virtual] |
Remove the plot at the specified index, returns true if successful, false if the index was invalid.
Reimplemented in Kitware.VTK.vtkChartXY.
virtual bool Kitware.VTK.vtkChart.RemovePlotInstance | ( | vtkPlot | plot | ) | [virtual] |
Remove the given plot. Returns true if successful, false if the plot was not contained in this chart. Note, the base implementation of this method performs a linear search to locate the plot.
static new vtkChart Kitware.VTK.vtkChart.SafeDownCast | ( | vtkObjectBase | o | ) | [static] |
Undocumented Block.
Reimplemented from Kitware.VTK.vtkContextItem.
Reimplemented in Kitware.VTK.vtkChartXY, Kitware.VTK.vtkChartParallelCoordinates, Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartHistogram2D.
virtual void Kitware.VTK.vtkChart.SetActionToButton | ( | int | action, |
int | button | ||
) | [virtual] |
Assign action types to mouse buttons. Available action types are PAN, ZOOM and SELECT in the chart enum, the default assigns the LEFT_BUTTON to PAN, MIDDLE_BUTTON to ZOOM and RIGHT_BUTTON to SELECT. Valid mouse enums are in the vtkContextMouseEvent class.
Note that only one mouse button can be assigned to each action, an action will have -1 (invalid button) assigned if it had the same button as the one assigned to a different action.
virtual void Kitware.VTK.vtkChart.SetAnnotationLink | ( | vtkAnnotationLink | link | ) | [virtual] |
Set the vtkAnnotationLink for the chart.
virtual void Kitware.VTK.vtkChart.SetAutoSize | ( | bool | _arg | ) | [virtual] |
Set/get whether the chart should automatically resize to fill the current render window. Default is true.
void Kitware.VTK.vtkChart.SetBorders | ( | int | left, |
int | bottom, | ||
int | right, | ||
int | top | ||
) |
Set/get the borders of the chart (space in pixels around the chart).
void Kitware.VTK.vtkChart.SetBottomBorder | ( | int | border | ) |
Set/get the borders of the chart (space in pixels around the chart).
virtual void Kitware.VTK.vtkChart.SetClickActionToButton | ( | int | action, |
int | button | ||
) | [virtual] |
Assign action types to single mouse clicks. Available action types are SELECT and NOTIFY in the chart enum. The default assigns the LEFT_BUTTON to NOTIFY, and the RIGHT_BUTTON to SELECT.
virtual void Kitware.VTK.vtkChart.SetGeometry | ( | int | _arg1, |
int | _arg2 | ||
) | [virtual] |
Set/get the width and the height of the chart.
void Kitware.VTK.vtkChart.SetGeometry | ( | IntPtr | _arg | ) |
Set/get the width and the height of the chart.
void Kitware.VTK.vtkChart.SetLeftBorder | ( | int | border | ) |
Set/get the borders of the chart (space in pixels around the chart).
virtual void Kitware.VTK.vtkChart.SetPoint1 | ( | int | _arg1, |
int | _arg2 | ||
) | [virtual] |
Set/get the first point in the chart (the bottom left).
void Kitware.VTK.vtkChart.SetPoint1 | ( | IntPtr | _arg | ) |
Set/get the first point in the chart (the bottom left).
virtual void Kitware.VTK.vtkChart.SetPoint2 | ( | int | _arg1, |
int | _arg2 | ||
) | [virtual] |
Set/get the second point in the chart (the top right).
void Kitware.VTK.vtkChart.SetPoint2 | ( | IntPtr | _arg | ) |
Set/get the second point in the chart (the top right).
virtual void Kitware.VTK.vtkChart.SetRenderEmpty | ( | bool | _arg | ) | [virtual] |
Set/get whether the chart should still render its axes and decorations even if the chart has no visible plots. Default is false (do not render an empty plot).
Note that if you wish to render axes for an empty plot you should also set AutoSize to false, as that will hide all axes for an empty plot.
void Kitware.VTK.vtkChart.SetRightBorder | ( | int | border | ) |
Set/get the borders of the chart (space in pixels around the chart).
virtual void Kitware.VTK.vtkChart.SetShowLegend | ( | bool | visible | ) | [virtual] |
Set/get whether the chart should draw a legend.
Reimplemented in Kitware.VTK.vtkChartXY, and Kitware.VTK.vtkChartPie.
void Kitware.VTK.vtkChart.SetTopBorder | ( | int | border | ) |
Set/get the borders of the chart (space in pixels around the chart).
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_AddPlot_01 | ( | HandleRef | pThis, |
int | type, | ||
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkChart.vtkChart_AddPlot_02 | ( | HandleRef | pThis, |
HandleRef | plot | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_ClearPlots_03 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkChart.vtkChart_GetActionToButton_04 | ( | HandleRef | pThis, |
int | action | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetAnnotationLink_05 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal byte Kitware.VTK.vtkChart.vtkChart_GetAutoSize_06 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetAxis_07 | ( | HandleRef | pThis, |
int | axisIndex, | ||
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkChart.vtkChart_GetClickActionToButton_08 | ( | HandleRef | pThis, |
int | action | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetGeometry_09 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_GetGeometry_10 | ( | HandleRef | pThis, |
ref int | _arg1, | ||
ref int | _arg2 | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_GetGeometry_11 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetLegend_12 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkChart.vtkChart_GetNumberOfAxes_13 | ( | HandleRef | pThis | ) | [private] |
static internal int Kitware.VTK.vtkChart.vtkChart_GetNumberOfPlots_14 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetPlot_15 | ( | HandleRef | pThis, |
int | index, | ||
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetPoint1_16 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_GetPoint1_17 | ( | HandleRef | pThis, |
ref int | _arg1, | ||
ref int | _arg2 | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_GetPoint1_18 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetPoint2_19 | ( | HandleRef | pThis | ) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_GetPoint2_20 | ( | HandleRef | pThis, |
ref int | _arg1, | ||
ref int | _arg2 | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_GetPoint2_21 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal byte Kitware.VTK.vtkChart.vtkChart_GetRenderEmpty_22 | ( | HandleRef | pThis | ) | [private] |
static internal byte Kitware.VTK.vtkChart.vtkChart_GetShowLegend_23 | ( | HandleRef | pThis | ) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_GetTitleProperties_24 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal int Kitware.VTK.vtkChart.vtkChart_IsA_25 | ( | HandleRef | pThis, |
string | type | ||
) | [private] |
static internal int Kitware.VTK.vtkChart.vtkChart_IsTypeOf_26 | ( | string | type | ) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_NewInstance_27 | ( | HandleRef | pThis, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal byte Kitware.VTK.vtkChart.vtkChart_Paint_28 | ( | HandleRef | pThis, |
HandleRef | painter | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_RecalculateBounds_29 | ( | HandleRef | pThis | ) | [private] |
static internal byte Kitware.VTK.vtkChart.vtkChart_RemovePlot_30 | ( | HandleRef | pThis, |
int | index | ||
) | [private] |
static internal byte Kitware.VTK.vtkChart.vtkChart_RemovePlotInstance_31 | ( | HandleRef | pThis, |
HandleRef | plot | ||
) | [private] |
static internal IntPtr Kitware.VTK.vtkChart.vtkChart_SafeDownCast_32 | ( | HandleRef | o, |
ref uint | mteStatus, | ||
ref uint | mteIndex, | ||
ref uint | rawRefCount | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetActionToButton_33 | ( | HandleRef | pThis, |
int | action, | ||
int | button | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetAnnotationLink_34 | ( | HandleRef | pThis, |
HandleRef | link | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetAutoSize_35 | ( | HandleRef | pThis, |
byte | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetBorders_36 | ( | HandleRef | pThis, |
int | left, | ||
int | bottom, | ||
int | right, | ||
int | top | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetBottomBorder_37 | ( | HandleRef | pThis, |
int | border | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetClickActionToButton_38 | ( | HandleRef | pThis, |
int | action, | ||
int | button | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetGeometry_39 | ( | HandleRef | pThis, |
int | _arg1, | ||
int | _arg2 | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetGeometry_40 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetLeftBorder_41 | ( | HandleRef | pThis, |
int | border | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetPoint1_42 | ( | HandleRef | pThis, |
int | _arg1, | ||
int | _arg2 | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetPoint1_43 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetPoint2_44 | ( | HandleRef | pThis, |
int | _arg1, | ||
int | _arg2 | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetPoint2_45 | ( | HandleRef | pThis, |
IntPtr | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetRenderEmpty_46 | ( | HandleRef | pThis, |
byte | _arg | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetRightBorder_47 | ( | HandleRef | pThis, |
int | border | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetShowLegend_48 | ( | HandleRef | pThis, |
byte | visible | ||
) | [private] |
static internal void Kitware.VTK.vtkChart.vtkChart_SetTopBorder_49 | ( | HandleRef | pThis, |
int | border | ||
) | [private] |
new readonly string Kitware.VTK.vtkChart.MRClassNameKey = "8vtkChart" [static] |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkContextItem.
Reimplemented in Kitware.VTK.vtkChartHistogram2D, Kitware.VTK.vtkChartParallelCoordinates, Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartXY.
new const string Kitware.VTK.vtkChart.MRFullTypeName = "Kitware.VTK.vtkChart" |
Automatically generated type registration mechanics.
Reimplemented from Kitware.VTK.vtkContextItem.
Reimplemented in Kitware.VTK.vtkChartHistogram2D, Kitware.VTK.vtkChartParallelCoordinates, Kitware.VTK.vtkChartPie, and Kitware.VTK.vtkChartXY.