#include <vtkPlot.h>
Definition at line 40 of file vtkPlot.h.
Public Types | |
typedef vtkContextItem | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
virtual void | PrintSelf (ostream &os, vtkIndent indent) |
virtual bool | PaintLegend (vtkContext2D *painter, float rect[4]) |
virtual bool | SelectPoints (const vtkVector2f &min, const vtkVector2f &max) |
virtual void | SetWidth (float width) |
virtual float | GetWidth () |
const char * | GetLabel () |
virtual vtkTable * | GetInput () |
virtual void | SetInputArray (int index, const char *name) |
virtual void | SetSelection (vtkIdTypeArray *id) |
virtual vtkIdTypeArray * | GetSelection () |
virtual void | GetBounds (double bounds[4]) |
virtual bool | GetNearestPoint (const vtkVector2f &point, const vtkVector2f &tolerance, vtkVector2f *location) |
virtual void | SetColor (unsigned char r, unsigned char g, unsigned char b, unsigned char a) |
virtual void | SetColor (double r, double g, double b) |
virtual void | GetColor (double rgb[3]) |
virtual vtkPen * | GetPen () |
virtual vtkBrush * | GetBrush () |
virtual void | SetLabel (const char *) |
virtual vtkContextMapper2D * | GetData () |
virtual bool | GetUseIndexForXSeries () |
virtual void | SetUseIndexForXSeries (bool) |
virtual void | SetInput (vtkTable *table) |
virtual void | SetInput (vtkTable *table, const char *xColumn, const char *yColumn) |
void | SetInput (vtkTable *table, vtkIdType xColumn, vtkIdType yColumn) |
virtual vtkAxis * | GetXAxis () |
virtual void | SetXAxis (vtkAxis *axis) |
virtual vtkAxis * | GetYAxis () |
virtual void | SetYAxis (vtkAxis *axis) |
void | SetProperty (const char *property, vtkVariant *var) |
vtkVariant | GetProperty (const char *property) |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkPlot * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkPlot () | |
~vtkPlot () | |
Protected Attributes | |
vtkPen * | Pen |
vtkBrush * | Brush |
char * | Label |
bool | UseIndexForXSeries |
vtkContextMapper2D * | Data |
vtkIdTypeArray * | Selection |
vtkAxis * | XAxis |
vtkAxis * | YAxis |
typedef vtkContextItem vtkPlot::Superclass |
Reimplemented from vtkContextItem.
Reimplemented in vtkPlotBar, vtkPlotLine, vtkPlotParallelCoordinates, and vtkPlotPoints.
vtkPlot::vtkPlot | ( | ) | [protected] |
vtkPlot::~vtkPlot | ( | ) | [protected] |
virtual const char* vtkPlot::GetClassName | ( | ) | [virtual] |
Reimplemented from vtkContextItem.
Reimplemented in vtkPlotBar, vtkPlotLine, vtkPlotParallelCoordinates, and vtkPlotPoints.
static int vtkPlot::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type 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.
Reimplemented in vtkPlotBar, vtkPlotLine, vtkPlotParallelCoordinates, and vtkPlotPoints.
virtual int vtkPlot::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.
Reimplemented in vtkPlotBar, vtkPlotLine, vtkPlotParallelCoordinates, and vtkPlotPoints.
Reimplemented from vtkContextItem.
Reimplemented in vtkPlotBar, vtkPlotLine, vtkPlotParallelCoordinates, and vtkPlotPoints.
virtual void vtkPlot::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
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 vtkContextItem.
Reimplemented in vtkPlotBar, vtkPlotLine, vtkPlotParallelCoordinates, and vtkPlotPoints.
virtual bool vtkPlot::PaintLegend | ( | vtkContext2D * | painter, | |
float | rect[4] | |||
) | [virtual] |
Paint legend event for the XY plot, called whenever the legend needs the plot items symbol/mark/line drawn. A rect is supplied with the lower left corner of the rect (elements 0 and 1) and with width x height (elements 2 and 3). The plot can choose how to fill the space supplied.
Reimplemented in vtkPlotBar, vtkPlotLine, vtkPlotParallelCoordinates, and vtkPlotPoints.
virtual bool vtkPlot::GetNearestPoint | ( | const vtkVector2f & | point, | |
const vtkVector2f & | tolerance, | |||
vtkVector2f * | location | |||
) | [virtual] |
Function to query a plot for the nearest point to the specified coordinate.
Reimplemented in vtkPlotBar, vtkPlotParallelCoordinates, and vtkPlotPoints.
virtual bool vtkPlot::SelectPoints | ( | const vtkVector2f & | min, | |
const vtkVector2f & | max | |||
) | [virtual] |
Reimplemented in vtkPlotPoints.
virtual void vtkPlot::SetColor | ( | unsigned char | r, | |
unsigned char | g, | |||
unsigned char | b, | |||
unsigned char | a | |||
) | [virtual] |
Set the plot color
Reimplemented in vtkPlotBar.
virtual void vtkPlot::SetColor | ( | double | r, | |
double | g, | |||
double | b | |||
) | [virtual] |
Set the plot color
Reimplemented in vtkPlotBar.
virtual void vtkPlot::GetColor | ( | double | rgb[3] | ) | [virtual] |
Set the plot color
Reimplemented in vtkPlotBar.
virtual void vtkPlot::SetWidth | ( | float | width | ) | [virtual] |
Set the width of the line.
Reimplemented in vtkPlotBar.
virtual float vtkPlot::GetWidth | ( | ) | [virtual] |
Get the width of the line.
Reimplemented in vtkPlotBar.
virtual vtkPen* vtkPlot::GetPen | ( | ) | [virtual] |
Get a pointer to the vtkPen object that controls the was this plot draws lines.
virtual vtkBrush* vtkPlot::GetBrush | ( | ) | [virtual] |
Get a pointer to the vtkBrush object that controls the was this plot fills shapes.
virtual void vtkPlot::SetLabel | ( | const char * | ) | [virtual] |
Set the plot label.
const char* vtkPlot::GetLabel | ( | ) |
Get the plot label.
virtual vtkContextMapper2D* vtkPlot::GetData | ( | ) | [virtual] |
Get the data object that the plot will draw.
virtual bool vtkPlot::GetUseIndexForXSeries | ( | ) | [virtual] |
Use the Y array index for the X value. If true any X column setting will be ignored, and the X values will simply be the index of the Y column.
virtual void vtkPlot::SetUseIndexForXSeries | ( | bool | ) | [virtual] |
Use the Y array index for the X value. If true any X column setting will be ignored, and the X values will simply be the index of the Y column.
virtual void vtkPlot::SetInput | ( | vtkTable * | table | ) | [virtual] |
This is a convenience function to set the input table and the x, y column for the plot.
Reimplemented in vtkPlotParallelCoordinates.
virtual void vtkPlot::SetInput | ( | vtkTable * | table, | |
const char * | xColumn, | |||
const char * | yColumn | |||
) | [virtual] |
This is a convenience function to set the input table and the x, y column for the plot.
Reimplemented in vtkPlotParallelCoordinates.
This is a convenience function to set the input table and the x, y column for the plot.
virtual vtkTable* vtkPlot::GetInput | ( | ) | [virtual] |
Get the input table used by the plot.
virtual void vtkPlot::SetInputArray | ( | int | index, | |
const char * | name | |||
) | [virtual] |
Convenience function to set the input arrays. For most mappers index 0 is the x axis, and index 1 is the y axis. The name is the name of the column in the vtkTable.
virtual void vtkPlot::SetSelection | ( | vtkIdTypeArray * | id | ) | [virtual] |
virtual vtkIdTypeArray* vtkPlot::GetSelection | ( | ) | [virtual] |
virtual vtkAxis* vtkPlot::GetXAxis | ( | ) | [virtual] |
Get/set the X axis associated with this plot.
virtual void vtkPlot::SetXAxis | ( | vtkAxis * | axis | ) | [virtual] |
Get/set the X axis associated with this plot.
virtual vtkAxis* vtkPlot::GetYAxis | ( | ) | [virtual] |
Get/set the Y axis associated with this plot.
virtual void vtkPlot::SetYAxis | ( | vtkAxis * | axis | ) | [virtual] |
Get/set the Y axis associated with this plot.
virtual void vtkPlot::GetBounds | ( | double | bounds[4] | ) | [inline, virtual] |
Reimplemented in vtkPlotBar, vtkPlotParallelCoordinates, and vtkPlotPoints.
void vtkPlot::SetProperty | ( | const char * | property, | |
vtkVariant * | var | |||
) |
A General setter/getter that should be overridden. It can silently drop options, case is important
vtkVariant vtkPlot::GetProperty | ( | const char * | property | ) |
A General setter/getter that should be overridden. It can silently drop options, case is important
vtkPen* vtkPlot::Pen [protected] |
vtkBrush* vtkPlot::Brush [protected] |
char* vtkPlot::Label [protected] |
bool vtkPlot::UseIndexForXSeries [protected] |
vtkContextMapper2D* vtkPlot::Data [protected] |
This data member contains the data that will be plotted, it inherits from vtkAlgorithm.
vtkIdTypeArray* vtkPlot::Selection [protected] |
vtkAxis* vtkPlot::XAxis [protected] |
vtkAxis* vtkPlot::YAxis [protected] |