summaryrefslogtreecommitdiffstats
path: root/src/datavisualization/data/qitemmodelsurfacedatamapping.cpp
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2013-09-18 09:50:40 +0300
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2013-09-18 10:08:26 +0300
commit03b9a7b753a255231bedad6a4ad8adcdd09ed842 (patch)
tree1900c2aec3400622f1a0d9e4bce73082ff943487 /src/datavisualization/data/qitemmodelsurfacedatamapping.cpp
parent585e66106203dd011ec0777e64d6e4cfc6e9c5ed (diff)
Remove buggy code for adjusting surface samplespace.
For now we require data range and axis range to be the same. Change-Id: Ie26a0728f9d6c4a014000ea8ccf71221f799899a Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'src/datavisualization/data/qitemmodelsurfacedatamapping.cpp')
-rw-r--r--src/datavisualization/data/qitemmodelsurfacedatamapping.cpp12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/datavisualization/data/qitemmodelsurfacedatamapping.cpp b/src/datavisualization/data/qitemmodelsurfacedatamapping.cpp
index 2fd66b30..27df0309 100644
--- a/src/datavisualization/data/qitemmodelsurfacedatamapping.cpp
+++ b/src/datavisualization/data/qitemmodelsurfacedatamapping.cpp
@@ -103,14 +103,16 @@ QT_DATAVISUALIZATION_BEGIN_NAMESPACE
* \qmlproperty list SurfaceDataMapping::autoRowCategories
* When set to true, the mapping ignores any explicitly set row categories
* and overwrites them with automatically generated ones whenever the
- * data from model is resolved. Defaults to true.
+ * data from model is resolved. Proxy minimum and maximum row values are also
+ * autogenerated from data when this is set to true. Defaults to true.
*/
/*!
* \qmlproperty list SurfaceDataMapping::autoColumnCategories
* When set to true, the mapping ignores any explicitly set column categories
* and overwrites them with automatically generated ones whenever the
- * data from model is resolved. Defaults to true.
+ * data from model is resolved. Proxy minimum and maximum column values are also
+ * autogenerated from data when this is set to true. Defaults to true.
*/
/*!
@@ -291,7 +293,8 @@ bool QItemModelSurfaceDataMapping::useModelCategories() const
*
* When set to true, the mapping ignores any explicitly set row categories
* and overwrites them with automatically generated ones whenever the
- * data from model is resolved. Defaults to true.
+ * data from model is resolved. Proxy minimum and maximum row values are also
+ * autogenerated from data when this is set to true. Defaults to true.
*/
void QItemModelSurfaceDataMapping::setAutoRowCategories(bool enable)
{
@@ -311,7 +314,8 @@ bool QItemModelSurfaceDataMapping::autoRowCategories() const
*
* When set to true, the mapping ignores any explicitly set column categories
* and overwrites them with automatically generated ones whenever the
- * data from model is resolved. Defaults to true.
+ * data from model is resolved. Proxy minimum and maximum column values are also
+ * autogenerated from data when this is set to true. Defaults to true.
*/
void QItemModelSurfaceDataMapping::setAutoColumnCategories(bool enable)
{