Class representing grid-based data for on a 3D chart. More...

Public Member Functions | |
| WEquidistantGridData (WAbstractItemModel *model, double XMin, double deltaX, double YMin, double deltaY) | |
| Constructor. | |
| virtual double | minimum (Axis axis) const |
| Returns the computed minimum value of this dataseries along the given axis. | |
| virtual double | maximum (Axis axis) const |
| Returns the computed maximum value of this dataseries along the given axis. | |
| void | setXAbscis (double XMinimum, double deltaX) |
| Sets the minimum and delta for the X-axis. | |
| double | XMinimum () const |
| Returns the minimum value of the X-axis. | |
| double | deltaX () const |
| Returns the delta value of the X-axis. | |
| void | setYAbscis (double YMinimum, double deltaY) |
| Sets the minimum and delta for the Y-axis. | |
| double | YMinimum () const |
| Returns the minimum value of the Y-axis. | |
| double | deltaY () const |
| Returns the delta value of the Y-axis. | |
Class representing grid-based data for on a 3D chart.
General information can be found at WAbstractDataSeries3D. The model for this dataseries does not contain an x- and y-axis. Instead the class derives the x- and y-values from the minimum and delta provided in the constructor. The size of the model determines the size of the grid. The model itself is structured as a table, where every value represents the z-value of a data-point. The corresponding x- and y-values are calculated by adding delta times the row/column-index to the axis-minimum.
| double Wt::Chart::WEquidistantGridData::deltaX | ( | ) | const |
Returns the delta value of the X-axis.
The delta is the interval between subsequent values on the axis.
| double Wt::Chart::WEquidistantGridData::deltaY | ( | ) | const |
Returns the delta value of the Y-axis.
The delta is the interval between subsequent values on the axis.
| double Wt::Chart::WEquidistantGridData::maximum | ( | Axis | axis | ) | const [virtual] |
Returns the computed maximum value of this dataseries along the given axis.
Implements Wt::Chart::WAbstractGridData.
| double Wt::Chart::WEquidistantGridData::minimum | ( | Axis | axis | ) | const [virtual] |
Returns the computed minimum value of this dataseries along the given axis.
Implements Wt::Chart::WAbstractGridData.
| double Wt::Chart::WEquidistantGridData::XMinimum | ( | ) | const |
Returns the minimum value of the X-axis.
| double Wt::Chart::WEquidistantGridData::YMinimum | ( | ) | const |
Returns the minimum value of the Y-axis.
1.7.6.1