The vtkQtStackedChartOptions class stores the stacked chart options. More...
#include <vtkQtStackedChartOptions.h>
Signals | |
void | axesCornerChanged () |
Emitted when the stacked chart axes change. | |
void | sumationChanged () |
Emitted when the sumation normalization changes. | |
void | gradientChanged () |
Emitted when the gradient option changes. | |
Public Member Functions | |
vtkQtStackedChartOptions (QObject *parent=0) | |
Creates a stacked chart options instance. | |
vtkQtStackedChartOptions (const vtkQtStackedChartOptions &other) | |
Makes a copy of another stacked chart options instance. | |
virtual | ~vtkQtStackedChartOptions () |
vtkQtChartLayer::AxesCorner | getAxesCorner () const |
Gets the pair of axes used by the stacked chart. | |
void | setAxesCorner (vtkQtChartLayer::AxesCorner axes) |
Sets the pair of axes used by the stacked chart. | |
bool | isSumNormalized () const |
Gets whether or not the sum is normalized. | |
void | setSumNormalized (bool normalized) |
Sets whether or not the sum is normalized. | |
bool | isGradientDislpayed () const |
Gets whether or not gradients are displayed. | |
void | setGradientDisplayed (bool gradient) |
Sets whether or not gradients are displayed. | |
vtkQtChartHelpFormatter * | getHelpFormat () |
Gets the chart help text formatter. | |
const vtkQtChartHelpFormatter * | getHelpFormat () const |
Gets the chart help text formatter. | |
vtkQtStackedChartOptions & | operator= (const vtkQtStackedChartOptions &other) |
Makes a copy of another stacked chart options instance. |
The vtkQtStackedChartOptions class stores the stacked chart options.
Definition at line 38 of file vtkQtStackedChartOptions.h.
vtkQtStackedChartOptions::vtkQtStackedChartOptions | ( | QObject * | parent = 0 ) |
Creates a stacked chart options instance.
parent | The parent object. |
vtkQtStackedChartOptions::vtkQtStackedChartOptions | ( | const vtkQtStackedChartOptions & | other ) |
Makes a copy of another stacked chart options instance.
other | The stacked chart options to copy. |
virtual vtkQtStackedChartOptions::~vtkQtStackedChartOptions | ( | ) | [virtual] |
void vtkQtStackedChartOptions::axesCornerChanged | ( | ) | [signal] |
Emitted when the stacked chart axes change.
vtkQtChartLayer::AxesCorner vtkQtStackedChartOptions::getAxesCorner | ( | ) | const [inline] |
Gets the pair of axes used by the stacked chart.
Definition at line 58 of file vtkQtStackedChartOptions.h.
{return this->Axes;}
const vtkQtChartHelpFormatter* vtkQtStackedChartOptions::getHelpFormat | ( | ) | const [inline] |
Gets the chart help text formatter.
Definition at line 101 of file vtkQtStackedChartOptions.h.
{return this->Help;}
vtkQtChartHelpFormatter* vtkQtStackedChartOptions::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 95 of file vtkQtStackedChartOptions.h.
{return this->Help;}
void vtkQtStackedChartOptions::gradientChanged | ( | ) | [signal] |
Emitted when the gradient option changes.
bool vtkQtStackedChartOptions::isGradientDislpayed | ( | ) | const [inline] |
Gets whether or not gradients are displayed.
Definition at line 80 of file vtkQtStackedChartOptions.h.
{return this->Gradient;}
bool vtkQtStackedChartOptions::isSumNormalized | ( | ) | const [inline] |
Gets whether or not the sum is normalized.
Definition at line 69 of file vtkQtStackedChartOptions.h.
{return this->Normalized;}
vtkQtStackedChartOptions& vtkQtStackedChartOptions::operator= | ( | const vtkQtStackedChartOptions & | other ) |
Makes a copy of another stacked chart options instance.
other | The stacked chart options to copy. |
void vtkQtStackedChartOptions::setAxesCorner | ( | vtkQtChartLayer::AxesCorner | axes ) |
Sets the pair of axes used by the stacked chart.
axes | The new chart axes. |
void vtkQtStackedChartOptions::setGradientDisplayed | ( | bool | gradient ) |
Sets whether or not gradients are displayed.
gradient | True if gradients should be displayed. |
void vtkQtStackedChartOptions::setSumNormalized | ( | bool | normalized ) |
Sets whether or not the sum is normalized.
normalized | True if the sum should be normalized. |
void vtkQtStackedChartOptions::sumationChanged | ( | ) | [signal] |
Emitted when the sumation normalization changes.