summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/data/qsurfacedataproxy.cpp
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2013-09-25 14:25:22 +0300
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2013-09-26 07:42:37 +0300
commitbb0e49c6bc7e4e650fc84366ff51ee47c8e5c530 (patch)
tree9d171a1dc51cd690e7edcd4cf7e4da442dc01ba2 /src/datavisualization/data/qsurfacedataproxy.cpp
parentd44ecd0b27e591429893e4b870713e245a3c46f9 (diff)
Implement ColorGradient for qml
Reimplementation of qml's Gradient type, which unfortunately cannot be used by 3rd party modules, as the implementation classes are private. Task-number: QTRD-2328 Change-Id: Ib984b07f6771d26a9e37fd5f78016b7ba0bd7ce0 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'src/datavisualization/data/qsurfacedataproxy.cpp')
-rw-r--r--src/datavisualization/data/qsurfacedataproxy.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/datavisualization/data/qsurfacedataproxy.cpp b/src/datavisualization/data/qsurfacedataproxy.cpp
index bd3688dc..1a2e29ce 100644
--- a/src/datavisualization/data/qsurfacedataproxy.cpp
+++ b/src/datavisualization/data/qsurfacedataproxy.cpp
@@ -42,6 +42,8 @@ const qreal defaultMaxValue = 10.0;
* \note Surfaces with less than two rows or columns are not considered valid surfaces and will
* not get rendered.
*
+ * \note The way row and column values are handled is subject to change after technology preview.
+ *
* QSurfaceDataProxy supports the following format tags for QAbstractDataProxy::setItemLabelFormat():
* \table
* \row
@@ -86,6 +88,8 @@ const qreal defaultMaxValue = 10.0;
*
* The minimum value of the range in rows. For instance if function z value varies between -8.0
* and 8.0 set this property to -8.0.
+ *
+ * \note The way row and column values are handled is subject to change after technology preview.
*/
/*!
@@ -93,6 +97,8 @@ const qreal defaultMaxValue = 10.0;
*
* The maximum value of the range in rows. For instance if function z value varies between -8.0
* and 8.0 set this property to 8.0.
+ *
+ * \note The way row and column values are handled is subject to change after technology preview.
*/
/*!
@@ -100,6 +106,8 @@ const qreal defaultMaxValue = 10.0;
*
* The minimum value of the range in columns. For instance if function x value varies between -8.0
* and 8.0 set this property to -8.0.
+ *
+ * \note The way row and column values are handled is subject to change after technology preview.
*/
/*!
@@ -107,6 +115,8 @@ const qreal defaultMaxValue = 10.0;
*
* The maximum value of the range in columns. For instance if function x value varies between -8.0
* and 8.0 set this property to 8.0.
+ *
+ * \note The way row and column values are handled is subject to change after technology preview.
*/
/*!