summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTitta Heikkala <titta.heikkala@theqtcompany.com>2015-09-11 08:56:26 +0300
committerMiikka Heikkinen <miikka.heikkinen@theqtcompany.com>2015-09-11 06:43:50 +0000
commit6ae307b421c60b7d0e4dde871451f670479b072b (patch)
tree742d50bb329791be6b60ed7b107a6be7aeb8e305
parent458692a5a59458b22b68900e1bc2abc22b380ab6 (diff)
Updated plugins.qmltypes
Minor tick feature updated to plugins.qmltypes Change-Id: I77e19bec75018add89c774dd5e8283a5d85552d9 Task-number: QTRD-3294 Reviewed-by: Miikka Heikkinen <miikka.heikkinen@theqtcompany.com>
-rw-r--r--src/chartsqml2/plugins.qmltypes15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/chartsqml2/plugins.qmltypes b/src/chartsqml2/plugins.qmltypes
index d4a4805b..d361739e 100644
--- a/src/chartsqml2/plugins.qmltypes
+++ b/src/chartsqml2/plugins.qmltypes
@@ -1992,6 +1992,8 @@ Module {
Property { name: "labelsColor"; type: "QColor" }
Property { name: "gridVisible"; type: "bool" }
Property { name: "gridLinePen"; type: "QPen" }
+ Property { name: "minorGridVisible"; type: "bool" }
+ Property { name: "minorGridLinePen"; type: "QPen" }
Property { name: "shadesVisible"; type: "bool" }
Property { name: "shadesColor"; type: "QColor" }
Property { name: "shadesBorderColor"; type: "QColor" }
@@ -2041,6 +2043,14 @@ Module {
Parameter { name: "visible"; type: "bool" }
}
Signal {
+ name: "minorGridVisibleChanged"
+ Parameter { name: "visible"; type: "bool" }
+ }
+ Signal {
+ name: "minorGridLinePenChanged"
+ Parameter { name: "pen"; type: "QPen" }
+ }
+ Signal {
name: "colorChanged"
Parameter { name: "color"; type: "QColor" }
}
@@ -2793,6 +2803,7 @@ Module {
Property { name: "min"; type: "double" }
Property { name: "max"; type: "double" }
Property { name: "labelFormat"; type: "string" }
+ Property { name: "minorTickCount"; type: "int" }
Signal {
name: "minChanged"
Parameter { name: "min"; type: "double" }
@@ -2811,6 +2822,10 @@ Module {
Parameter { name: "tickCount"; type: "int" }
}
Signal {
+ name: "minorTickCountChanged"
+ Parameter { name: "tickCount"; type: "int" }
+ }
+ Signal {
name: "labelFormatChanged"
Parameter { name: "format"; type: "string" }
}