summaryrefslogtreecommitdiffstats
path: root/src/datavisualization
diff options
context:
space:
mode:
authorMiikka Heikkinen <miikka.heikkinen@digia.com>2013-10-08 11:23:47 +0300
committerMiikka Heikkinen <miikka.heikkinen@digia.com>2013-10-08 11:35:43 +0300
commit84ec19e6e8ebc563b577f78b9f58cf6fa907271b (patch)
tree60892c28db4385f4f67c572e27d5983bbcded70a /src/datavisualization
parenta3ed16c4634a41d12d51c1cdc893384a03fe6983 (diff)
Finish overview docs
Change-Id: I52e20c2e3f60e8d0160746fa480146ac2ae77930 Reviewed-by: Tomi Korpipää <tomi.korpipaa@digia.com>
Diffstat (limited to 'src/datavisualization')
-rw-r--r--src/datavisualization/doc/src/qtdatavisualization.qdoc26
1 files changed, 22 insertions, 4 deletions
diff --git a/src/datavisualization/doc/src/qtdatavisualization.qdoc b/src/datavisualization/doc/src/qtdatavisualization.qdoc
index 7c4bcd2e..1f2474f7 100644
--- a/src/datavisualization/doc/src/qtdatavisualization.qdoc
+++ b/src/datavisualization/doc/src/qtdatavisualization.qdoc
@@ -181,11 +181,29 @@
\page qtdatavisualization_interacting_with_data.html
\title Qt Data Visualization Interacting with Data
- \section1 View manipulation
+ \section1 Interacting with data
- TODO
+ You can interact with the rendered graph with either mouse or touch to rotate, zoom, or select
+ data. For the mouse controls, see Q3DInputHandler documentation, and for the touch controls,
+ see QTouch3DInputHandler documentation.
- \section1 Highlighting data
+ \note In the technology preview version, default input handlers cannot be replaced or even accessed
+ via public API. This feature is planned for the final release.
- TODO
+ \section1 Data selection modes
+
+ All visualization types support selecting single data item - a bar, a scatter item, or a surface
+ vertex - using mouse, touch, and programmatically via the graph APIs. The selected item is highlighted
+ in the rendered graph, and selecting causes emission of a graph specific signal for this purpose,
+ e.g. Q3DBars::selectedBarPosChanged(), which the application can handle.
+
+ \note Surface graph doesn't have fully implemented selection API yet, it only supports
+ selection with mouse and touch in the technology preview version.
+
+ Bar and surface graphs support slice selection modes, where the selected row or column is drawn
+ in a separate viewport as a pseudo-2D graph. This makes it easier to see the actual values of
+ single row or column.
+
+ Bar graph additionally supports simply highlighting the whole row and/or column of the selected bar
+ without opening the slice view.
*/