Commit Graph

15 Commits

Author SHA1 Message Date
Kwanghyo Park 176d42ab30 Add texture API support
Add support when the file is set as a source of a texture

Task-number: QTBUG-99842
Change-Id: I57264501aabd4d2cf294d94f1cd4f51440b94e52
Reviewed-by: Dilek Akcay <dilek.akcay@qt.io>
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
Reviewed-by: Jere Tuliniemi <jere.tuliniemi@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-05-24 11:38:47 +03:00
Kwanghyo Park d9663649c1 Add polar axes support
Polar coordinates support is added

Task-number: QTBUG-99820
Change-Id: I5c594ef114da35be0153e2a3e2ed58aed5915bb4
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
Reviewed-by: Jere Tuliniemi <jere.tuliniemi@qt.io>
Reviewed-by: Dilek Akcay <dilek.akcay@qt.io>
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
2023-05-22 10:15:59 +03:00
Tomi Korpipaa d640d3c3e0 Add support for doing picking on touch
Task-number: QTBUG-99829
Change-Id: I2d5e205888d7e4141b4fa0f0fdd061b8bb54e66d
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-05-17 14:23:16 +03:00
Kwanghyo Park b375ce4f00 Fix slice graph update issues
When the data is updated, the slice graph is not shown
properly and does not show correct graph.

Fixes: QTBUG-113540
Change-Id: Ie709c8c1d9e89b9761fe4898abb0085f55e4ebea
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-05-12 10:30:03 +03:00
Kwanghyo Park 923aa8eb17 Enhance rendering performance
Enhance the rendering performance by reducing
rendering calculation

Task-number: QTBUG-108129
Change-Id: I99f554104e7dcc53e16538cca0f72f5b385e5557
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
2023-05-02 09:10:20 +03:00
Kwanghyo Park da2a48f1ad Handle multi series selection with different size
There could be cases that the graphs have different
size of series but selected.

Task-number: QTBUG-112729
Change-Id: Ib6c017fd27d82f4e5ab24d56ef54ce541a90f4dd
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-04-18 13:50:03 +03:00
Kwanghyo Park afdfc96860 Fix crash issue when changing series
When changing the data of series, the slice view
handling is updated to fix crash

Task-number: QTBUG-112242
Change-Id: I49578d8fbc19d326928138e3ea6abc9e7f85ff24
Reviewed-by: Dilek Akcay <dilek.akcay@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-04-12 14:31:40 +03:00
Tomi Korpipaa e0c699fb01 Fix Surface3D memory leaks
Task-number: QTBUG-110692
Change-Id: I4214f6d4b8911dc4bef4daa45c043d6aa9848b10
Reviewed-by: Kwanghyo Park <kwanghyo.park@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-04-11 11:25:08 +03:00
Kwanghyo Park e9e4d1e093 Fix picking issues when graph grid is on
When graph grid is on, picking other than graph still gets picked
It is due to picking of Line primitive geometry is not the same as
picking Triangles primitive.
Make the surface graph still there but not visible to be picked on
an exact point

Task-number: QTBUG-112442
Change-Id: Ibcce25041ededc64e5f0dbe048843aec71f2e485
Reviewed-by: Dilek Akcay <dilek.akcay@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-03-31 12:54:12 +03:00
Kwanghyo Park 06b64491dc Fix surface disappearing issue
The surface graph disappears in a certain sequence.
Clean up the logic to handle mouse pressed to avoid such issue

Task-number: QTBUG-112279
Change-Id: I07bf7772e473179785be047043227a6e7a399d4e
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-03-31 09:01:23 +03:00
Kwanghyo Park b80c6fe91c Apply aspectRatio calculation for scale
AspecRatio and horizontalAspectRatio is used to calculate
scale

Task-number: QTBUG-112359
Change-Id: I5fb1316c2955e11d44df53c833ab07f36dcd7cf4
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-03-29 07:01:00 +03:00
Tomi Korpipaa 3e970657bd Initial support for range gradient for bars and surface
Support range gradient with custom material

Task-number: QTBUG-112285
Change-Id: I681fcdaba67a82f54c9807e5a040bce740be0343
Reviewed-by: Dilek Akcay <dilek.akcay@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-03-28 08:19:05 +03:00
Kwanghyo Park 8312f0ebbd Add orthographic camera support
Add support for orthographic camera on main graph view

Task-number: QTBUG-112144
Change-Id: I80a3a9f9d3be2b7e7c627a51e2d7db9da39fa96e
Reviewed-by: Sami Varanka <sami.varanka@qt.io>
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-03-24 09:54:42 +02:00
Kwanghyo Park af4ed8f338 Fix slice view on qmlsurfacegallery example
The slice view is created when there is a first interaction
requires slice view so that the slice view can retrieve the
size of the main view.

Task-number: QTBUG-111672
Change-Id: I2ad83ca023deaf70990fed2080599da0bf12e5a6
Reviewed-by: Tomi Korpipää <tomi.korpipaa@qt.io>
2023-03-21 15:33:18 +02:00
Jukka Jokiniva 8d18b56183 Initial commit 2023-03-02 15:45:23 +02:00