From 71302b3895afc20ef37c62749105991b070b55b3 Mon Sep 17 00:00:00 2001 From: Titta Heikkala Date: Thu, 2 Feb 2017 07:17:54 +0200 Subject: iot-sensortag: Add glow to gyro and magnetometer charts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Glow effect added to gyro and magnetometer charts. Change-Id: Id219a687c9432c16326d578ba2816bc39ac09c2c Reviewed-by: Kari Hautamäki --- tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml') diff --git a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml index 699f537..6e3af9d 100644 --- a/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml +++ b/tradeshow/iot-sensortag/resources/base/MagnetometerChart.qml @@ -50,6 +50,7 @@ import QtQuick 2.5 import QtCharts 2.1 import SensorTag.DataProvider 1.0 +import QtGraphicalEffects 1.0 BaseChart { id: magnetHolderRect @@ -87,6 +88,14 @@ BaseChart { magneticSeriesIndex++; } + Glow { + anchors.fill: chartView + radius: 18 + samples: 30 + color: "#15bdff" + source: chartView + } + PolarChartView { id: chartView @@ -110,7 +119,7 @@ BaseChart { labelsVisible: false gridVisible: false min: 0 - max: maxNumOfMagnReadings + 1 + max: maxNumOfMagnReadings tickCount: 2 color: chartColor visible: false -- cgit v1.2.3