The vtkQtStatisticalBoxChartOptions class stores the drawing options for a box chart. More...
#include <vtkQtStatisticalBoxChartOptions.h>
Public Types | |
enum | OutlineStyle { Darker, Black } |
Signals | |
void | axesCornerChanged () |
Emitted when the box chart axes change. | |
void | boxFractionChanged () |
Emitted when the box width fraction changes. | |
void | outlineStyleChanged () |
Emitted when the outline style changes. | |
Public Member Functions | |
vtkQtStatisticalBoxChartOptions (QObject *parent=0) | |
Creates a box chart options instance. | |
vtkQtStatisticalBoxChartOptions (const vtkQtStatisticalBoxChartOptions &other) | |
Makes a copy of another box chart options instance. | |
virtual | ~vtkQtStatisticalBoxChartOptions () |
vtkQtChartLayer::AxesCorner | getAxesCorner () const |
Gets the pair of axes used by the box chart. | |
void | setAxesCorner (vtkQtChartLayer::AxesCorner axes) |
Sets the pair of axes used by the box chart. | |
float | getBoxWidthFraction () const |
Gets the box width fraction. | |
void | setBoxWidthFraction (float fraction) |
Sets the box width fraction. | |
OutlineStyle | getOutlineStyle () const |
Gets the outline style for the boxes. | |
void | setOutlineStyle (OutlineStyle style) |
Sets the outline style for the boxes. | |
vtkQtChartHelpFormatter * | getHelpFormat () |
Gets the chart help text formatter. | |
const vtkQtChartHelpFormatter * | getHelpFormat () const |
Gets the chart help text formatter. | |
vtkQtChartHelpFormatter * | getOutlierFormat () |
Gets the outlier help text formatter. | |
const vtkQtChartHelpFormatter * | getOutlierFormat () const |
Gets the outlier help text formatter. | |
vtkQtStatisticalBoxChartOptions & | operator= (const vtkQtStatisticalBoxChartOptions &other) |
Makes a copy of another box chart options instance. |
The vtkQtStatisticalBoxChartOptions class stores the drawing options for a box chart.
The default settings are as follows:
BottomLeft
Darker
Definition at line 44 of file vtkQtStatisticalBoxChartOptions.h.
Definition at line 49 of file vtkQtStatisticalBoxChartOptions.h.
vtkQtStatisticalBoxChartOptions::vtkQtStatisticalBoxChartOptions | ( | QObject * | parent = 0 ) |
Creates a box chart options instance.
parent | The parent object. |
vtkQtStatisticalBoxChartOptions::vtkQtStatisticalBoxChartOptions | ( | const vtkQtStatisticalBoxChartOptions & | other ) |
Makes a copy of another box chart options instance.
other | The box chart options to copy. |
virtual vtkQtStatisticalBoxChartOptions::~vtkQtStatisticalBoxChartOptions | ( | ) | [inline, virtual] |
Definition at line 66 of file vtkQtStatisticalBoxChartOptions.h.
{}
void vtkQtStatisticalBoxChartOptions::axesCornerChanged | ( | ) | [signal] |
Emitted when the box chart axes change.
void vtkQtStatisticalBoxChartOptions::boxFractionChanged | ( | ) | [signal] |
Emitted when the box width fraction changes.
vtkQtChartLayer::AxesCorner vtkQtStatisticalBoxChartOptions::getAxesCorner | ( | ) | const [inline] |
Gets the pair of axes used by the box chart.
Definition at line 72 of file vtkQtStatisticalBoxChartOptions.h.
{return this->AxesCorner;}
float vtkQtStatisticalBoxChartOptions::getBoxWidthFraction | ( | ) | const [inline] |
Gets the box width fraction.
The box width fraction is used to set the spacing between the boxs of different series.
Definition at line 87 of file vtkQtStatisticalBoxChartOptions.h.
{return this->BoxFraction;}
const vtkQtChartHelpFormatter* vtkQtStatisticalBoxChartOptions::getHelpFormat | ( | ) | const [inline] |
Gets the chart help text formatter.
Definition at line 122 of file vtkQtStatisticalBoxChartOptions.h.
{return this->Help;}
vtkQtChartHelpFormatter* vtkQtStatisticalBoxChartOptions::getHelpFormat | ( | ) | [inline] |
Gets the chart help text formatter.
The help text formatter stores the format string. It is also used to generate the help text.
Definition at line 116 of file vtkQtStatisticalBoxChartOptions.h.
{return this->Help;}
vtkQtChartHelpFormatter* vtkQtStatisticalBoxChartOptions::getOutlierFormat | ( | ) | [inline] |
Gets the outlier help text formatter.
The help text formatter stores the format string. It is also used to generate the help text.
Definition at line 132 of file vtkQtStatisticalBoxChartOptions.h.
{return this->Outlier;}
const vtkQtChartHelpFormatter* vtkQtStatisticalBoxChartOptions::getOutlierFormat | ( | ) | const [inline] |
Gets the outlier help text formatter.
Definition at line 138 of file vtkQtStatisticalBoxChartOptions.h.
{return this->Outlier;}
OutlineStyle vtkQtStatisticalBoxChartOptions::getOutlineStyle | ( | ) | const [inline] |
Gets the outline style for the boxes.
Definition at line 98 of file vtkQtStatisticalBoxChartOptions.h.
{return this->OutlineType;}
vtkQtStatisticalBoxChartOptions& vtkQtStatisticalBoxChartOptions::operator= | ( | const vtkQtStatisticalBoxChartOptions & | other ) |
Makes a copy of another box chart options instance.
other | The box chart options to copy. |
void vtkQtStatisticalBoxChartOptions::outlineStyleChanged | ( | ) | [signal] |
Emitted when the outline style changes.
void vtkQtStatisticalBoxChartOptions::setAxesCorner | ( | vtkQtChartLayer::AxesCorner | axes ) |
Sets the pair of axes used by the box chart.
axes | The new chart axes. |
void vtkQtStatisticalBoxChartOptions::setBoxWidthFraction | ( | float | fraction ) |
Sets the box width fraction.
fraction | The new box width fraction. |
void vtkQtStatisticalBoxChartOptions::setOutlineStyle | ( | OutlineStyle | style ) |
Sets the outline style for the boxes.
The default style is Darker
.
style | The outline style to use. |