@pie-element/graphing 3.7.9 → 3.7.10-beta.1445
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +361 -0
- package/configure/CHANGELOG.md +359 -0
- package/configure/lib/configure.js +143 -68
- package/configure/lib/configure.js.map +1 -1
- package/configure/lib/correct-response.js +332 -60
- package/configure/lib/correct-response.js.map +1 -1
- package/configure/lib/defaults.js +257 -11
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/graphing-config.js +319 -179
- package/configure/lib/graphing-config.js.map +1 -1
- package/configure/lib/index.js +61 -16
- package/configure/lib/index.js.map +1 -1
- package/configure/lib/utils.js +165 -0
- package/configure/lib/utils.js.map +1 -0
- package/configure/package.json +6 -5
- package/controller/CHANGELOG.md +63 -0
- package/controller/lib/defaults.js +4 -0
- package/controller/lib/defaults.js.map +1 -1
- package/controller/lib/index.js +60 -23
- package/controller/lib/index.js.map +1 -1
- package/controller/lib/utils.js +8 -6
- package/controller/lib/utils.js.map +1 -1
- package/controller/package.json +4 -4
- package/docs/config-schema.json +1036 -11
- package/docs/config-schema.json.md +722 -11
- package/docs/demo/config.js +2 -2
- package/docs/demo/generate.js +25 -19
- package/docs/pie-schema.json +639 -512
- package/docs/pie-schema.json.md +411 -86
- package/lib/index.js +3 -0
- package/lib/index.js.map +1 -1
- package/lib/main.js +10 -2
- package/lib/main.js.map +1 -1
- package/lib/utils.js.map +1 -1
- package/package.json +7 -6
package/docs/pie-schema.json
CHANGED
|
@@ -105,46 +105,6 @@
|
|
|
105
105
|
"y"
|
|
106
106
|
]
|
|
107
107
|
},
|
|
108
|
-
"center": {
|
|
109
|
-
"title": "Point",
|
|
110
|
-
"type": "object",
|
|
111
|
-
"properties": {
|
|
112
|
-
"x": {
|
|
113
|
-
"description": "Indicates x coordinate",
|
|
114
|
-
"type": "number",
|
|
115
|
-
"title": "x"
|
|
116
|
-
},
|
|
117
|
-
"y": {
|
|
118
|
-
"description": "Indicates y coordinate",
|
|
119
|
-
"type": "number",
|
|
120
|
-
"title": "y"
|
|
121
|
-
}
|
|
122
|
-
},
|
|
123
|
-
"required": [
|
|
124
|
-
"x",
|
|
125
|
-
"y"
|
|
126
|
-
]
|
|
127
|
-
},
|
|
128
|
-
"outerPoint": {
|
|
129
|
-
"title": "Point",
|
|
130
|
-
"type": "object",
|
|
131
|
-
"properties": {
|
|
132
|
-
"x": {
|
|
133
|
-
"description": "Indicates x coordinate",
|
|
134
|
-
"type": "number",
|
|
135
|
-
"title": "x"
|
|
136
|
-
},
|
|
137
|
-
"y": {
|
|
138
|
-
"description": "Indicates y coordinate",
|
|
139
|
-
"type": "number",
|
|
140
|
-
"title": "y"
|
|
141
|
-
}
|
|
142
|
-
},
|
|
143
|
-
"required": [
|
|
144
|
-
"x",
|
|
145
|
-
"y"
|
|
146
|
-
]
|
|
147
|
-
},
|
|
148
108
|
"closed": {
|
|
149
109
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
150
110
|
"type": "boolean",
|
|
@@ -337,46 +297,6 @@
|
|
|
337
297
|
"y"
|
|
338
298
|
]
|
|
339
299
|
},
|
|
340
|
-
"center": {
|
|
341
|
-
"title": "Point",
|
|
342
|
-
"type": "object",
|
|
343
|
-
"properties": {
|
|
344
|
-
"x": {
|
|
345
|
-
"description": "Indicates x coordinate",
|
|
346
|
-
"type": "number",
|
|
347
|
-
"title": "x"
|
|
348
|
-
},
|
|
349
|
-
"y": {
|
|
350
|
-
"description": "Indicates y coordinate",
|
|
351
|
-
"type": "number",
|
|
352
|
-
"title": "y"
|
|
353
|
-
}
|
|
354
|
-
},
|
|
355
|
-
"required": [
|
|
356
|
-
"x",
|
|
357
|
-
"y"
|
|
358
|
-
]
|
|
359
|
-
},
|
|
360
|
-
"outerPoint": {
|
|
361
|
-
"title": "Point",
|
|
362
|
-
"type": "object",
|
|
363
|
-
"properties": {
|
|
364
|
-
"x": {
|
|
365
|
-
"description": "Indicates x coordinate",
|
|
366
|
-
"type": "number",
|
|
367
|
-
"title": "x"
|
|
368
|
-
},
|
|
369
|
-
"y": {
|
|
370
|
-
"description": "Indicates y coordinate",
|
|
371
|
-
"type": "number",
|
|
372
|
-
"title": "y"
|
|
373
|
-
}
|
|
374
|
-
},
|
|
375
|
-
"required": [
|
|
376
|
-
"x",
|
|
377
|
-
"y"
|
|
378
|
-
]
|
|
379
|
-
},
|
|
380
300
|
"closed": {
|
|
381
301
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
382
302
|
"type": "boolean",
|
|
@@ -588,46 +508,6 @@
|
|
|
588
508
|
"y"
|
|
589
509
|
]
|
|
590
510
|
},
|
|
591
|
-
"center": {
|
|
592
|
-
"title": "Point",
|
|
593
|
-
"type": "object",
|
|
594
|
-
"properties": {
|
|
595
|
-
"x": {
|
|
596
|
-
"description": "Indicates x coordinate",
|
|
597
|
-
"type": "number",
|
|
598
|
-
"title": "x"
|
|
599
|
-
},
|
|
600
|
-
"y": {
|
|
601
|
-
"description": "Indicates y coordinate",
|
|
602
|
-
"type": "number",
|
|
603
|
-
"title": "y"
|
|
604
|
-
}
|
|
605
|
-
},
|
|
606
|
-
"required": [
|
|
607
|
-
"x",
|
|
608
|
-
"y"
|
|
609
|
-
]
|
|
610
|
-
},
|
|
611
|
-
"outerPoint": {
|
|
612
|
-
"title": "Point",
|
|
613
|
-
"type": "object",
|
|
614
|
-
"properties": {
|
|
615
|
-
"x": {
|
|
616
|
-
"description": "Indicates x coordinate",
|
|
617
|
-
"type": "number",
|
|
618
|
-
"title": "x"
|
|
619
|
-
},
|
|
620
|
-
"y": {
|
|
621
|
-
"description": "Indicates y coordinate",
|
|
622
|
-
"type": "number",
|
|
623
|
-
"title": "y"
|
|
624
|
-
}
|
|
625
|
-
},
|
|
626
|
-
"required": [
|
|
627
|
-
"x",
|
|
628
|
-
"y"
|
|
629
|
-
]
|
|
630
|
-
},
|
|
631
511
|
"closed": {
|
|
632
512
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
633
513
|
"type": "boolean",
|
|
@@ -820,46 +700,6 @@
|
|
|
820
700
|
"y"
|
|
821
701
|
]
|
|
822
702
|
},
|
|
823
|
-
"center": {
|
|
824
|
-
"title": "Point",
|
|
825
|
-
"type": "object",
|
|
826
|
-
"properties": {
|
|
827
|
-
"x": {
|
|
828
|
-
"description": "Indicates x coordinate",
|
|
829
|
-
"type": "number",
|
|
830
|
-
"title": "x"
|
|
831
|
-
},
|
|
832
|
-
"y": {
|
|
833
|
-
"description": "Indicates y coordinate",
|
|
834
|
-
"type": "number",
|
|
835
|
-
"title": "y"
|
|
836
|
-
}
|
|
837
|
-
},
|
|
838
|
-
"required": [
|
|
839
|
-
"x",
|
|
840
|
-
"y"
|
|
841
|
-
]
|
|
842
|
-
},
|
|
843
|
-
"outerPoint": {
|
|
844
|
-
"title": "Point",
|
|
845
|
-
"type": "object",
|
|
846
|
-
"properties": {
|
|
847
|
-
"x": {
|
|
848
|
-
"description": "Indicates x coordinate",
|
|
849
|
-
"type": "number",
|
|
850
|
-
"title": "x"
|
|
851
|
-
},
|
|
852
|
-
"y": {
|
|
853
|
-
"description": "Indicates y coordinate",
|
|
854
|
-
"type": "number",
|
|
855
|
-
"title": "y"
|
|
856
|
-
}
|
|
857
|
-
},
|
|
858
|
-
"required": [
|
|
859
|
-
"x",
|
|
860
|
-
"y"
|
|
861
|
-
]
|
|
862
|
-
},
|
|
863
703
|
"closed": {
|
|
864
704
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
865
705
|
"type": "boolean",
|
|
@@ -1101,46 +941,6 @@
|
|
|
1101
941
|
"y"
|
|
1102
942
|
]
|
|
1103
943
|
},
|
|
1104
|
-
"center": {
|
|
1105
|
-
"title": "Point",
|
|
1106
|
-
"type": "object",
|
|
1107
|
-
"properties": {
|
|
1108
|
-
"x": {
|
|
1109
|
-
"description": "Indicates x coordinate",
|
|
1110
|
-
"type": "number",
|
|
1111
|
-
"title": "x"
|
|
1112
|
-
},
|
|
1113
|
-
"y": {
|
|
1114
|
-
"description": "Indicates y coordinate",
|
|
1115
|
-
"type": "number",
|
|
1116
|
-
"title": "y"
|
|
1117
|
-
}
|
|
1118
|
-
},
|
|
1119
|
-
"required": [
|
|
1120
|
-
"x",
|
|
1121
|
-
"y"
|
|
1122
|
-
]
|
|
1123
|
-
},
|
|
1124
|
-
"outerPoint": {
|
|
1125
|
-
"title": "Point",
|
|
1126
|
-
"type": "object",
|
|
1127
|
-
"properties": {
|
|
1128
|
-
"x": {
|
|
1129
|
-
"description": "Indicates x coordinate",
|
|
1130
|
-
"type": "number",
|
|
1131
|
-
"title": "x"
|
|
1132
|
-
},
|
|
1133
|
-
"y": {
|
|
1134
|
-
"description": "Indicates y coordinate",
|
|
1135
|
-
"type": "number",
|
|
1136
|
-
"title": "y"
|
|
1137
|
-
}
|
|
1138
|
-
},
|
|
1139
|
-
"required": [
|
|
1140
|
-
"x",
|
|
1141
|
-
"y"
|
|
1142
|
-
]
|
|
1143
|
-
},
|
|
1144
944
|
"closed": {
|
|
1145
945
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
1146
946
|
"type": "boolean",
|
|
@@ -1333,46 +1133,6 @@
|
|
|
1333
1133
|
"y"
|
|
1334
1134
|
]
|
|
1335
1135
|
},
|
|
1336
|
-
"center": {
|
|
1337
|
-
"title": "Point",
|
|
1338
|
-
"type": "object",
|
|
1339
|
-
"properties": {
|
|
1340
|
-
"x": {
|
|
1341
|
-
"description": "Indicates x coordinate",
|
|
1342
|
-
"type": "number",
|
|
1343
|
-
"title": "x"
|
|
1344
|
-
},
|
|
1345
|
-
"y": {
|
|
1346
|
-
"description": "Indicates y coordinate",
|
|
1347
|
-
"type": "number",
|
|
1348
|
-
"title": "y"
|
|
1349
|
-
}
|
|
1350
|
-
},
|
|
1351
|
-
"required": [
|
|
1352
|
-
"x",
|
|
1353
|
-
"y"
|
|
1354
|
-
]
|
|
1355
|
-
},
|
|
1356
|
-
"outerPoint": {
|
|
1357
|
-
"title": "Point",
|
|
1358
|
-
"type": "object",
|
|
1359
|
-
"properties": {
|
|
1360
|
-
"x": {
|
|
1361
|
-
"description": "Indicates x coordinate",
|
|
1362
|
-
"type": "number",
|
|
1363
|
-
"title": "x"
|
|
1364
|
-
},
|
|
1365
|
-
"y": {
|
|
1366
|
-
"description": "Indicates y coordinate",
|
|
1367
|
-
"type": "number",
|
|
1368
|
-
"title": "y"
|
|
1369
|
-
}
|
|
1370
|
-
},
|
|
1371
|
-
"required": [
|
|
1372
|
-
"x",
|
|
1373
|
-
"y"
|
|
1374
|
-
]
|
|
1375
|
-
},
|
|
1376
1136
|
"closed": {
|
|
1377
1137
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
1378
1138
|
"type": "boolean",
|
|
@@ -1485,6 +1245,22 @@
|
|
|
1485
1245
|
"type": "boolean",
|
|
1486
1246
|
"title": "coordinatesOnHover"
|
|
1487
1247
|
},
|
|
1248
|
+
"defaultTool": {
|
|
1249
|
+
"description": "Indicates the default selected tool for the graph",
|
|
1250
|
+
"enum": [
|
|
1251
|
+
"circle",
|
|
1252
|
+
"line",
|
|
1253
|
+
"parabola",
|
|
1254
|
+
"point",
|
|
1255
|
+
"polygon",
|
|
1256
|
+
"ray",
|
|
1257
|
+
"segment",
|
|
1258
|
+
"sine",
|
|
1259
|
+
"vector"
|
|
1260
|
+
],
|
|
1261
|
+
"type": "string",
|
|
1262
|
+
"title": "defaultTool"
|
|
1263
|
+
},
|
|
1488
1264
|
"domain": {
|
|
1489
1265
|
"title": "GraphSettings",
|
|
1490
1266
|
"type": "object",
|
|
@@ -1549,6 +1325,11 @@
|
|
|
1549
1325
|
"width"
|
|
1550
1326
|
]
|
|
1551
1327
|
},
|
|
1328
|
+
"includeAxes": {
|
|
1329
|
+
"description": "Indicates if the graph axes and labels are enabled",
|
|
1330
|
+
"type": "boolean",
|
|
1331
|
+
"title": "includeAxes"
|
|
1332
|
+
},
|
|
1552
1333
|
"labels": {
|
|
1553
1334
|
"title": "Labels",
|
|
1554
1335
|
"type": "object",
|
|
@@ -1669,6 +1450,16 @@
|
|
|
1669
1450
|
"type": "string",
|
|
1670
1451
|
"title": "title"
|
|
1671
1452
|
},
|
|
1453
|
+
"labelsEnabled": {
|
|
1454
|
+
"description": "Indicates if the graph labels are displayed",
|
|
1455
|
+
"type": "boolean",
|
|
1456
|
+
"title": "labelsEnabled"
|
|
1457
|
+
},
|
|
1458
|
+
"titleEnabled": {
|
|
1459
|
+
"description": "Indicates if the graph title is displayed",
|
|
1460
|
+
"type": "boolean",
|
|
1461
|
+
"title": "titleEnabled"
|
|
1462
|
+
},
|
|
1672
1463
|
"toolbarTools": {
|
|
1673
1464
|
"description": "Indicates the tools that have to be displayed in toolbar",
|
|
1674
1465
|
"type": "array",
|
|
@@ -1716,6 +1507,16 @@
|
|
|
1716
1507
|
"type": "boolean",
|
|
1717
1508
|
"title": "rationaleEnabled"
|
|
1718
1509
|
},
|
|
1510
|
+
"spellCheckEnabled": {
|
|
1511
|
+
"description": "Indicates if spellcheck is enabled for the author. Default value is true",
|
|
1512
|
+
"type": "boolean",
|
|
1513
|
+
"title": "spellCheckEnabled"
|
|
1514
|
+
},
|
|
1515
|
+
"standardGrid": {
|
|
1516
|
+
"description": "Indicates if some domain values will be synched to the range values",
|
|
1517
|
+
"type": "boolean",
|
|
1518
|
+
"title": "standardGrid"
|
|
1519
|
+
},
|
|
1719
1520
|
"studentInstructionsEnabled": {
|
|
1720
1521
|
"description": "Indicates if Student Instructions are enabled",
|
|
1721
1522
|
"type": "boolean",
|
|
@@ -1726,6 +1527,11 @@
|
|
|
1726
1527
|
"type": "boolean",
|
|
1727
1528
|
"title": "teacherInstructionsEnabled"
|
|
1728
1529
|
},
|
|
1530
|
+
"rubricEnabled": {
|
|
1531
|
+
"description": "Indicates if Rubric is enabled",
|
|
1532
|
+
"type": "boolean",
|
|
1533
|
+
"title": "rubricEnabled"
|
|
1534
|
+
},
|
|
1729
1535
|
"id": {
|
|
1730
1536
|
"description": "Identifier to identify the Pie Element in html markup, Must be unique within a pie item config.",
|
|
1731
1537
|
"type": "string",
|
|
@@ -1740,43 +1546,152 @@
|
|
|
1740
1546
|
"required": [
|
|
1741
1547
|
"answers",
|
|
1742
1548
|
"backgroundMarks",
|
|
1549
|
+
"defaultTool",
|
|
1743
1550
|
"domain",
|
|
1744
1551
|
"element",
|
|
1745
1552
|
"graph",
|
|
1746
1553
|
"id",
|
|
1747
1554
|
"range",
|
|
1748
1555
|
"rationaleEnabled",
|
|
1556
|
+
"rubricEnabled",
|
|
1557
|
+
"spellCheckEnabled",
|
|
1749
1558
|
"studentInstructionsEnabled",
|
|
1750
1559
|
"teacherInstructionsEnabled"
|
|
1751
1560
|
],
|
|
1752
1561
|
"definitions": {
|
|
1753
|
-
"
|
|
1754
|
-
"title": "
|
|
1562
|
+
"AuthoringConfigProp": {
|
|
1563
|
+
"title": "AuthoringConfigProp",
|
|
1755
1564
|
"type": "object",
|
|
1756
1565
|
"properties": {
|
|
1757
1566
|
"settings": {
|
|
1758
|
-
"description": "Indicates if the item
|
|
1567
|
+
"description": "Indicates if the item is displayed in the Settings Panel",
|
|
1759
1568
|
"type": "boolean",
|
|
1760
1569
|
"title": "settings"
|
|
1761
1570
|
},
|
|
1762
1571
|
"label": {
|
|
1763
|
-
"description": "Indicates the label for the item that
|
|
1572
|
+
"description": "Indicates the label for the item that is displayed in the Settings Panel",
|
|
1764
1573
|
"type": "string",
|
|
1765
1574
|
"title": "label"
|
|
1766
1575
|
},
|
|
1767
1576
|
"enabled": {
|
|
1768
|
-
"description": "Indicates
|
|
1577
|
+
"description": "Indicates if the Grid Setup Panel is displayed",
|
|
1769
1578
|
"type": "boolean",
|
|
1770
1579
|
"title": "enabled"
|
|
1771
|
-
}
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
"
|
|
1580
|
+
},
|
|
1581
|
+
"includeAxesEnabled": {
|
|
1582
|
+
"description": "Indicates if the \"includeAxes\" toggle is displayed in the Grid Setup Panel",
|
|
1583
|
+
"type": "boolean",
|
|
1584
|
+
"title": "includeAxesEnabled"
|
|
1585
|
+
},
|
|
1586
|
+
"standardGridEnabled": {
|
|
1587
|
+
"description": "Indicates if the \"standardGrid\" toggle is displayed in the Grid Setup Panel",
|
|
1588
|
+
"type": "boolean",
|
|
1589
|
+
"title": "standardGridEnabled"
|
|
1590
|
+
},
|
|
1591
|
+
"min": {
|
|
1592
|
+
"title": "GridPanelConfigProp",
|
|
1593
|
+
"type": "object",
|
|
1594
|
+
"properties": {
|
|
1595
|
+
"label": {
|
|
1596
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1597
|
+
"type": "string",
|
|
1598
|
+
"title": "label"
|
|
1599
|
+
},
|
|
1600
|
+
"enabled": {
|
|
1601
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1602
|
+
"type": "boolean",
|
|
1603
|
+
"title": "enabled"
|
|
1604
|
+
}
|
|
1605
|
+
}
|
|
1606
|
+
},
|
|
1607
|
+
"max": {
|
|
1608
|
+
"title": "GridPanelConfigProp",
|
|
1609
|
+
"type": "object",
|
|
1610
|
+
"properties": {
|
|
1611
|
+
"label": {
|
|
1612
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1613
|
+
"type": "string",
|
|
1614
|
+
"title": "label"
|
|
1615
|
+
},
|
|
1616
|
+
"enabled": {
|
|
1617
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1618
|
+
"type": "boolean",
|
|
1619
|
+
"title": "enabled"
|
|
1620
|
+
}
|
|
1621
|
+
}
|
|
1622
|
+
},
|
|
1623
|
+
"axisLabel": {
|
|
1624
|
+
"title": "GridPanelConfigProp",
|
|
1625
|
+
"type": "object",
|
|
1626
|
+
"properties": {
|
|
1627
|
+
"label": {
|
|
1628
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1629
|
+
"type": "string",
|
|
1630
|
+
"title": "label"
|
|
1631
|
+
},
|
|
1632
|
+
"enabled": {
|
|
1633
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1634
|
+
"type": "boolean",
|
|
1635
|
+
"title": "enabled"
|
|
1636
|
+
}
|
|
1637
|
+
}
|
|
1638
|
+
},
|
|
1639
|
+
"step": {
|
|
1640
|
+
"title": "GridPanelConfigProp",
|
|
1641
|
+
"type": "object",
|
|
1642
|
+
"properties": {
|
|
1643
|
+
"label": {
|
|
1644
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1645
|
+
"type": "string",
|
|
1646
|
+
"title": "label"
|
|
1647
|
+
},
|
|
1648
|
+
"enabled": {
|
|
1649
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1650
|
+
"type": "boolean",
|
|
1651
|
+
"title": "enabled"
|
|
1652
|
+
}
|
|
1653
|
+
}
|
|
1654
|
+
},
|
|
1655
|
+
"labelStep": {
|
|
1656
|
+
"title": "GridPanelConfigProp",
|
|
1657
|
+
"type": "object",
|
|
1658
|
+
"properties": {
|
|
1659
|
+
"label": {
|
|
1660
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1661
|
+
"type": "string",
|
|
1662
|
+
"title": "label"
|
|
1663
|
+
},
|
|
1664
|
+
"enabled": {
|
|
1665
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1666
|
+
"type": "boolean",
|
|
1667
|
+
"title": "enabled"
|
|
1668
|
+
}
|
|
1669
|
+
}
|
|
1670
|
+
}
|
|
1671
|
+
}
|
|
1672
|
+
},
|
|
1673
|
+
"GridPanelConfigProp": {
|
|
1674
|
+
"title": "GridPanelConfigProp",
|
|
1675
|
+
"type": "object",
|
|
1676
|
+
"properties": {
|
|
1677
|
+
"label": {
|
|
1678
|
+
"description": "Indicates the label for the item that is displayed in the Grid Setup Panel",
|
|
1679
|
+
"type": "string",
|
|
1680
|
+
"title": "label"
|
|
1681
|
+
},
|
|
1682
|
+
"enabled": {
|
|
1683
|
+
"description": "Indicates if the item is displayed in the Grid Setup Panel",
|
|
1684
|
+
"type": "boolean",
|
|
1685
|
+
"title": "enabled"
|
|
1686
|
+
}
|
|
1687
|
+
}
|
|
1688
|
+
},
|
|
1689
|
+
"ArrowsConfigProp": {
|
|
1690
|
+
"title": "ArrowsConfigProp",
|
|
1691
|
+
"type": "object",
|
|
1692
|
+
"properties": {
|
|
1693
|
+
"settings": {
|
|
1694
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1780
1695
|
"type": "boolean",
|
|
1781
1696
|
"title": "settings"
|
|
1782
1697
|
},
|
|
@@ -1842,19 +1757,479 @@
|
|
|
1842
1757
|
}
|
|
1843
1758
|
}
|
|
1844
1759
|
},
|
|
1845
|
-
"ConfigureProp": {
|
|
1846
|
-
"title": "ConfigureProp",
|
|
1760
|
+
"ConfigureProp": {
|
|
1761
|
+
"title": "ConfigureProp",
|
|
1762
|
+
"type": "object",
|
|
1763
|
+
"properties": {
|
|
1764
|
+
"settings": {
|
|
1765
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1766
|
+
"type": "boolean",
|
|
1767
|
+
"title": "settings"
|
|
1768
|
+
},
|
|
1769
|
+
"label": {
|
|
1770
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
1771
|
+
"type": "string",
|
|
1772
|
+
"title": "label"
|
|
1773
|
+
}
|
|
1774
|
+
}
|
|
1775
|
+
},
|
|
1776
|
+
"DimensionsConfigProp": {
|
|
1777
|
+
"title": "DimensionsConfigProp",
|
|
1778
|
+
"type": "object",
|
|
1779
|
+
"properties": {
|
|
1780
|
+
"settings": {
|
|
1781
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
1782
|
+
"type": "boolean",
|
|
1783
|
+
"title": "settings"
|
|
1784
|
+
},
|
|
1785
|
+
"label": {
|
|
1786
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
1787
|
+
"type": "string",
|
|
1788
|
+
"title": "label"
|
|
1789
|
+
},
|
|
1790
|
+
"enabled": {
|
|
1791
|
+
"description": "Indicates if the graph dimensions are included in the Grid Setup Panel",
|
|
1792
|
+
"type": "boolean",
|
|
1793
|
+
"title": "enabled"
|
|
1794
|
+
},
|
|
1795
|
+
"min": {
|
|
1796
|
+
"description": "Indicates the minimum value for the graph width and height",
|
|
1797
|
+
"type": "number",
|
|
1798
|
+
"title": "min"
|
|
1799
|
+
},
|
|
1800
|
+
"max": {
|
|
1801
|
+
"description": "Indicates the maximum value for the graph width and height",
|
|
1802
|
+
"type": "number",
|
|
1803
|
+
"title": "max"
|
|
1804
|
+
},
|
|
1805
|
+
"step": {
|
|
1806
|
+
"description": "Indicates the increase/decrease value for the graph width and height",
|
|
1807
|
+
"type": "number",
|
|
1808
|
+
"title": "step"
|
|
1809
|
+
}
|
|
1810
|
+
}
|
|
1811
|
+
},
|
|
1812
|
+
"GridConfigurationsProp": {
|
|
1813
|
+
"title": "GridConfigurationsProp",
|
|
1814
|
+
"type": "object",
|
|
1815
|
+
"properties": {
|
|
1816
|
+
"label": {
|
|
1817
|
+
"description": "Indicates the label for the configuration",
|
|
1818
|
+
"type": "string",
|
|
1819
|
+
"title": "label"
|
|
1820
|
+
},
|
|
1821
|
+
"arrows": {
|
|
1822
|
+
"title": "Arrows",
|
|
1823
|
+
"type": "object",
|
|
1824
|
+
"properties": {
|
|
1825
|
+
"left": {
|
|
1826
|
+
"description": "Indicates if left arrow is enabled",
|
|
1827
|
+
"type": "boolean",
|
|
1828
|
+
"title": "left"
|
|
1829
|
+
},
|
|
1830
|
+
"right": {
|
|
1831
|
+
"description": "Indicates if right arrow is enabled",
|
|
1832
|
+
"type": "boolean",
|
|
1833
|
+
"title": "right"
|
|
1834
|
+
},
|
|
1835
|
+
"up": {
|
|
1836
|
+
"description": "Indicates if up arrow is enabled",
|
|
1837
|
+
"type": "boolean",
|
|
1838
|
+
"title": "up"
|
|
1839
|
+
},
|
|
1840
|
+
"down": {
|
|
1841
|
+
"description": "Indicates if down arrow is enabled",
|
|
1842
|
+
"type": "boolean",
|
|
1843
|
+
"title": "down"
|
|
1844
|
+
}
|
|
1845
|
+
},
|
|
1846
|
+
"required": [
|
|
1847
|
+
"down",
|
|
1848
|
+
"left",
|
|
1849
|
+
"right",
|
|
1850
|
+
"up"
|
|
1851
|
+
]
|
|
1852
|
+
},
|
|
1853
|
+
"domain": {
|
|
1854
|
+
"title": "GraphSettings",
|
|
1855
|
+
"type": "object",
|
|
1856
|
+
"properties": {
|
|
1857
|
+
"min": {
|
|
1858
|
+
"description": "Min value",
|
|
1859
|
+
"type": "number",
|
|
1860
|
+
"title": "min"
|
|
1861
|
+
},
|
|
1862
|
+
"max": {
|
|
1863
|
+
"description": "Max value",
|
|
1864
|
+
"type": "number",
|
|
1865
|
+
"title": "max"
|
|
1866
|
+
},
|
|
1867
|
+
"padding": {
|
|
1868
|
+
"description": "Padding value",
|
|
1869
|
+
"type": "number",
|
|
1870
|
+
"title": "padding"
|
|
1871
|
+
},
|
|
1872
|
+
"step": {
|
|
1873
|
+
"description": "Step value",
|
|
1874
|
+
"type": "number",
|
|
1875
|
+
"title": "step"
|
|
1876
|
+
},
|
|
1877
|
+
"labelStep": {
|
|
1878
|
+
"description": "Label step value",
|
|
1879
|
+
"type": "number",
|
|
1880
|
+
"title": "labelStep"
|
|
1881
|
+
},
|
|
1882
|
+
"axisLabel": {
|
|
1883
|
+
"description": "Axis Label",
|
|
1884
|
+
"type": "string",
|
|
1885
|
+
"title": "axisLabel"
|
|
1886
|
+
}
|
|
1887
|
+
},
|
|
1888
|
+
"required": [
|
|
1889
|
+
"axisLabel",
|
|
1890
|
+
"labelStep",
|
|
1891
|
+
"max",
|
|
1892
|
+
"min",
|
|
1893
|
+
"padding",
|
|
1894
|
+
"step"
|
|
1895
|
+
]
|
|
1896
|
+
},
|
|
1897
|
+
"graph": {
|
|
1898
|
+
"title": "Graph",
|
|
1899
|
+
"type": "object",
|
|
1900
|
+
"properties": {
|
|
1901
|
+
"width": {
|
|
1902
|
+
"description": "Width for graph representation",
|
|
1903
|
+
"type": "number",
|
|
1904
|
+
"title": "width"
|
|
1905
|
+
},
|
|
1906
|
+
"height": {
|
|
1907
|
+
"description": "Height for graph representation",
|
|
1908
|
+
"type": "number",
|
|
1909
|
+
"title": "height"
|
|
1910
|
+
}
|
|
1911
|
+
},
|
|
1912
|
+
"required": [
|
|
1913
|
+
"height",
|
|
1914
|
+
"width"
|
|
1915
|
+
]
|
|
1916
|
+
},
|
|
1917
|
+
"includeAxes": {
|
|
1918
|
+
"description": "Indicates if the graph axes and labels are enabled",
|
|
1919
|
+
"type": "boolean",
|
|
1920
|
+
"title": "includeAxes"
|
|
1921
|
+
},
|
|
1922
|
+
"labels": {
|
|
1923
|
+
"title": "Labels",
|
|
1924
|
+
"type": "object",
|
|
1925
|
+
"properties": {
|
|
1926
|
+
"top": {
|
|
1927
|
+
"description": "Label for top side of the graph",
|
|
1928
|
+
"type": "string",
|
|
1929
|
+
"title": "top"
|
|
1930
|
+
},
|
|
1931
|
+
"bottom": {
|
|
1932
|
+
"description": "Label for bottom side of the graph",
|
|
1933
|
+
"type": "string",
|
|
1934
|
+
"title": "bottom"
|
|
1935
|
+
},
|
|
1936
|
+
"left": {
|
|
1937
|
+
"description": "Label for left side of the graph",
|
|
1938
|
+
"type": "string",
|
|
1939
|
+
"title": "left"
|
|
1940
|
+
},
|
|
1941
|
+
"right": {
|
|
1942
|
+
"description": "Label for right side of the graph",
|
|
1943
|
+
"type": "string",
|
|
1944
|
+
"title": "right"
|
|
1945
|
+
}
|
|
1946
|
+
},
|
|
1947
|
+
"required": [
|
|
1948
|
+
"bottom",
|
|
1949
|
+
"left",
|
|
1950
|
+
"right",
|
|
1951
|
+
"top"
|
|
1952
|
+
]
|
|
1953
|
+
},
|
|
1954
|
+
"padding": {
|
|
1955
|
+
"description": "Indicates if padding is enabled",
|
|
1956
|
+
"type": "boolean",
|
|
1957
|
+
"title": "padding"
|
|
1958
|
+
},
|
|
1959
|
+
"range": {
|
|
1960
|
+
"title": "GraphSettings",
|
|
1961
|
+
"type": "object",
|
|
1962
|
+
"properties": {
|
|
1963
|
+
"min": {
|
|
1964
|
+
"description": "Min value",
|
|
1965
|
+
"type": "number",
|
|
1966
|
+
"title": "min"
|
|
1967
|
+
},
|
|
1968
|
+
"max": {
|
|
1969
|
+
"description": "Max value",
|
|
1970
|
+
"type": "number",
|
|
1971
|
+
"title": "max"
|
|
1972
|
+
},
|
|
1973
|
+
"padding": {
|
|
1974
|
+
"description": "Padding value",
|
|
1975
|
+
"type": "number",
|
|
1976
|
+
"title": "padding"
|
|
1977
|
+
},
|
|
1978
|
+
"step": {
|
|
1979
|
+
"description": "Step value",
|
|
1980
|
+
"type": "number",
|
|
1981
|
+
"title": "step"
|
|
1982
|
+
},
|
|
1983
|
+
"labelStep": {
|
|
1984
|
+
"description": "Label step value",
|
|
1985
|
+
"type": "number",
|
|
1986
|
+
"title": "labelStep"
|
|
1987
|
+
},
|
|
1988
|
+
"axisLabel": {
|
|
1989
|
+
"description": "Axis Label",
|
|
1990
|
+
"type": "string",
|
|
1991
|
+
"title": "axisLabel"
|
|
1992
|
+
}
|
|
1993
|
+
},
|
|
1994
|
+
"required": [
|
|
1995
|
+
"axisLabel",
|
|
1996
|
+
"labelStep",
|
|
1997
|
+
"max",
|
|
1998
|
+
"min",
|
|
1999
|
+
"padding",
|
|
2000
|
+
"step"
|
|
2001
|
+
]
|
|
2002
|
+
},
|
|
2003
|
+
"standardGrid": {
|
|
2004
|
+
"description": "Indicates if some domain values will be synched to the range values",
|
|
2005
|
+
"type": "boolean",
|
|
2006
|
+
"title": "standardGrid"
|
|
2007
|
+
},
|
|
2008
|
+
"title": {
|
|
2009
|
+
"description": "Indicates graph title",
|
|
2010
|
+
"type": "string",
|
|
2011
|
+
"title": "title"
|
|
2012
|
+
}
|
|
2013
|
+
},
|
|
2014
|
+
"required": [
|
|
2015
|
+
"domain",
|
|
2016
|
+
"graph",
|
|
2017
|
+
"range"
|
|
2018
|
+
]
|
|
2019
|
+
},
|
|
2020
|
+
"Arrows": {
|
|
2021
|
+
"title": "Arrows",
|
|
2022
|
+
"type": "object",
|
|
2023
|
+
"properties": {
|
|
2024
|
+
"left": {
|
|
2025
|
+
"description": "Indicates if left arrow is enabled",
|
|
2026
|
+
"type": "boolean",
|
|
2027
|
+
"title": "left"
|
|
2028
|
+
},
|
|
2029
|
+
"right": {
|
|
2030
|
+
"description": "Indicates if right arrow is enabled",
|
|
2031
|
+
"type": "boolean",
|
|
2032
|
+
"title": "right"
|
|
2033
|
+
},
|
|
2034
|
+
"up": {
|
|
2035
|
+
"description": "Indicates if up arrow is enabled",
|
|
2036
|
+
"type": "boolean",
|
|
2037
|
+
"title": "up"
|
|
2038
|
+
},
|
|
2039
|
+
"down": {
|
|
2040
|
+
"description": "Indicates if down arrow is enabled",
|
|
2041
|
+
"type": "boolean",
|
|
2042
|
+
"title": "down"
|
|
2043
|
+
}
|
|
2044
|
+
},
|
|
2045
|
+
"required": [
|
|
2046
|
+
"down",
|
|
2047
|
+
"left",
|
|
2048
|
+
"right",
|
|
2049
|
+
"up"
|
|
2050
|
+
]
|
|
2051
|
+
},
|
|
2052
|
+
"GraphSettings": {
|
|
2053
|
+
"title": "GraphSettings",
|
|
2054
|
+
"type": "object",
|
|
2055
|
+
"properties": {
|
|
2056
|
+
"min": {
|
|
2057
|
+
"description": "Min value",
|
|
2058
|
+
"type": "number",
|
|
2059
|
+
"title": "min"
|
|
2060
|
+
},
|
|
2061
|
+
"max": {
|
|
2062
|
+
"description": "Max value",
|
|
2063
|
+
"type": "number",
|
|
2064
|
+
"title": "max"
|
|
2065
|
+
},
|
|
2066
|
+
"padding": {
|
|
2067
|
+
"description": "Padding value",
|
|
2068
|
+
"type": "number",
|
|
2069
|
+
"title": "padding"
|
|
2070
|
+
},
|
|
2071
|
+
"step": {
|
|
2072
|
+
"description": "Step value",
|
|
2073
|
+
"type": "number",
|
|
2074
|
+
"title": "step"
|
|
2075
|
+
},
|
|
2076
|
+
"labelStep": {
|
|
2077
|
+
"description": "Label step value",
|
|
2078
|
+
"type": "number",
|
|
2079
|
+
"title": "labelStep"
|
|
2080
|
+
},
|
|
2081
|
+
"axisLabel": {
|
|
2082
|
+
"description": "Axis Label",
|
|
2083
|
+
"type": "string",
|
|
2084
|
+
"title": "axisLabel"
|
|
2085
|
+
}
|
|
2086
|
+
},
|
|
2087
|
+
"required": [
|
|
2088
|
+
"axisLabel",
|
|
2089
|
+
"labelStep",
|
|
2090
|
+
"max",
|
|
2091
|
+
"min",
|
|
2092
|
+
"padding",
|
|
2093
|
+
"step"
|
|
2094
|
+
]
|
|
2095
|
+
},
|
|
2096
|
+
"Graph": {
|
|
2097
|
+
"title": "Graph",
|
|
2098
|
+
"type": "object",
|
|
2099
|
+
"properties": {
|
|
2100
|
+
"width": {
|
|
2101
|
+
"description": "Width for graph representation",
|
|
2102
|
+
"type": "number",
|
|
2103
|
+
"title": "width"
|
|
2104
|
+
},
|
|
2105
|
+
"height": {
|
|
2106
|
+
"description": "Height for graph representation",
|
|
2107
|
+
"type": "number",
|
|
2108
|
+
"title": "height"
|
|
2109
|
+
}
|
|
2110
|
+
},
|
|
2111
|
+
"required": [
|
|
2112
|
+
"height",
|
|
2113
|
+
"width"
|
|
2114
|
+
]
|
|
2115
|
+
},
|
|
2116
|
+
"Labels": {
|
|
2117
|
+
"title": "Labels",
|
|
2118
|
+
"type": "object",
|
|
2119
|
+
"properties": {
|
|
2120
|
+
"top": {
|
|
2121
|
+
"description": "Label for top side of the graph",
|
|
2122
|
+
"type": "string",
|
|
2123
|
+
"title": "top"
|
|
2124
|
+
},
|
|
2125
|
+
"bottom": {
|
|
2126
|
+
"description": "Label for bottom side of the graph",
|
|
2127
|
+
"type": "string",
|
|
2128
|
+
"title": "bottom"
|
|
2129
|
+
},
|
|
2130
|
+
"left": {
|
|
2131
|
+
"description": "Label for left side of the graph",
|
|
2132
|
+
"type": "string",
|
|
2133
|
+
"title": "left"
|
|
2134
|
+
},
|
|
2135
|
+
"right": {
|
|
2136
|
+
"description": "Label for right side of the graph",
|
|
2137
|
+
"type": "string",
|
|
2138
|
+
"title": "right"
|
|
2139
|
+
}
|
|
2140
|
+
},
|
|
2141
|
+
"required": [
|
|
2142
|
+
"bottom",
|
|
2143
|
+
"left",
|
|
2144
|
+
"right",
|
|
2145
|
+
"top"
|
|
2146
|
+
]
|
|
2147
|
+
},
|
|
2148
|
+
"LabelsConfigProp": {
|
|
2149
|
+
"title": "LabelsConfigProp",
|
|
2150
|
+
"type": "object",
|
|
2151
|
+
"properties": {
|
|
2152
|
+
"top": {
|
|
2153
|
+
"description": "Indicates the placeholder for the top label",
|
|
2154
|
+
"type": "string",
|
|
2155
|
+
"title": "top"
|
|
2156
|
+
},
|
|
2157
|
+
"right": {
|
|
2158
|
+
"description": "Indicates the placeholder for the right label",
|
|
2159
|
+
"type": "string",
|
|
2160
|
+
"title": "right"
|
|
2161
|
+
},
|
|
2162
|
+
"bottom": {
|
|
2163
|
+
"description": "Indicates the placeholder for the bottom label",
|
|
2164
|
+
"type": "string",
|
|
2165
|
+
"title": "bottom"
|
|
2166
|
+
},
|
|
2167
|
+
"left": {
|
|
2168
|
+
"description": "Indicates the placeholder for the left label",
|
|
2169
|
+
"type": "string",
|
|
2170
|
+
"title": "left"
|
|
2171
|
+
},
|
|
2172
|
+
"settings": {
|
|
2173
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2174
|
+
"type": "boolean",
|
|
2175
|
+
"title": "settings"
|
|
2176
|
+
},
|
|
2177
|
+
"label": {
|
|
2178
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2179
|
+
"type": "string",
|
|
2180
|
+
"title": "label"
|
|
2181
|
+
},
|
|
2182
|
+
"enabled": {
|
|
2183
|
+
"description": "Indicates the value of the item if it affects config-ui\n(eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)",
|
|
2184
|
+
"type": "boolean",
|
|
2185
|
+
"title": "enabled"
|
|
2186
|
+
}
|
|
2187
|
+
}
|
|
2188
|
+
},
|
|
2189
|
+
"TitleConfigProp": {
|
|
2190
|
+
"title": "TitleConfigProp",
|
|
2191
|
+
"type": "object",
|
|
2192
|
+
"properties": {
|
|
2193
|
+
"placeholder": {
|
|
2194
|
+
"description": "Indicates the placeholder for the title label",
|
|
2195
|
+
"type": "string",
|
|
2196
|
+
"title": "placeholder"
|
|
2197
|
+
},
|
|
2198
|
+
"settings": {
|
|
2199
|
+
"description": "Indicates if the item has to be displayed in the Settings Panel",
|
|
2200
|
+
"type": "boolean",
|
|
2201
|
+
"title": "settings"
|
|
2202
|
+
},
|
|
2203
|
+
"label": {
|
|
2204
|
+
"description": "Indicates the label for the item that has to be displayed in the Settings Panel",
|
|
2205
|
+
"type": "string",
|
|
2206
|
+
"title": "label"
|
|
2207
|
+
},
|
|
2208
|
+
"enabled": {
|
|
2209
|
+
"description": "Indicates the value of the item if it affects config-ui\n(eg.: if item is a switch and displaying an input on the config-ui depends on the switch value: on/off)",
|
|
2210
|
+
"type": "boolean",
|
|
2211
|
+
"title": "enabled"
|
|
2212
|
+
}
|
|
2213
|
+
}
|
|
2214
|
+
},
|
|
2215
|
+
"ConfigureMaxImageDimensionsProp": {
|
|
2216
|
+
"title": "ConfigureMaxImageDimensionsProp",
|
|
1847
2217
|
"type": "object",
|
|
1848
2218
|
"properties": {
|
|
1849
|
-
"
|
|
1850
|
-
"description": "Indicates
|
|
1851
|
-
"type": "
|
|
1852
|
-
"title": "
|
|
2219
|
+
"teacherInstructions": {
|
|
2220
|
+
"description": "Indicates the max dimension for images in teacher instructions",
|
|
2221
|
+
"type": "number",
|
|
2222
|
+
"title": "teacherInstructions"
|
|
1853
2223
|
},
|
|
1854
|
-
"
|
|
1855
|
-
"description": "Indicates the
|
|
1856
|
-
"type": "
|
|
1857
|
-
"title": "
|
|
2224
|
+
"prompt": {
|
|
2225
|
+
"description": "Indicates the max dimension for images in prompt - this is also the default dimension for all other input fields if it's not specified",
|
|
2226
|
+
"type": "number",
|
|
2227
|
+
"title": "prompt"
|
|
2228
|
+
},
|
|
2229
|
+
"rationale": {
|
|
2230
|
+
"description": "Indicates the max dimension for images in rationale",
|
|
2231
|
+
"type": "number",
|
|
2232
|
+
"title": "rationale"
|
|
1858
2233
|
}
|
|
1859
2234
|
}
|
|
1860
2235
|
},
|
|
@@ -1956,46 +2331,6 @@
|
|
|
1956
2331
|
"y"
|
|
1957
2332
|
]
|
|
1958
2333
|
},
|
|
1959
|
-
"center": {
|
|
1960
|
-
"title": "Point",
|
|
1961
|
-
"type": "object",
|
|
1962
|
-
"properties": {
|
|
1963
|
-
"x": {
|
|
1964
|
-
"description": "Indicates x coordinate",
|
|
1965
|
-
"type": "number",
|
|
1966
|
-
"title": "x"
|
|
1967
|
-
},
|
|
1968
|
-
"y": {
|
|
1969
|
-
"description": "Indicates y coordinate",
|
|
1970
|
-
"type": "number",
|
|
1971
|
-
"title": "y"
|
|
1972
|
-
}
|
|
1973
|
-
},
|
|
1974
|
-
"required": [
|
|
1975
|
-
"x",
|
|
1976
|
-
"y"
|
|
1977
|
-
]
|
|
1978
|
-
},
|
|
1979
|
-
"outerPoint": {
|
|
1980
|
-
"title": "Point",
|
|
1981
|
-
"type": "object",
|
|
1982
|
-
"properties": {
|
|
1983
|
-
"x": {
|
|
1984
|
-
"description": "Indicates x coordinate",
|
|
1985
|
-
"type": "number",
|
|
1986
|
-
"title": "x"
|
|
1987
|
-
},
|
|
1988
|
-
"y": {
|
|
1989
|
-
"description": "Indicates y coordinate",
|
|
1990
|
-
"type": "number",
|
|
1991
|
-
"title": "y"
|
|
1992
|
-
}
|
|
1993
|
-
},
|
|
1994
|
-
"required": [
|
|
1995
|
-
"x",
|
|
1996
|
-
"y"
|
|
1997
|
-
]
|
|
1998
|
-
},
|
|
1999
2334
|
"closed": {
|
|
2000
2335
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
2001
2336
|
"type": "boolean",
|
|
@@ -2188,46 +2523,6 @@
|
|
|
2188
2523
|
"y"
|
|
2189
2524
|
]
|
|
2190
2525
|
},
|
|
2191
|
-
"center": {
|
|
2192
|
-
"title": "Point",
|
|
2193
|
-
"type": "object",
|
|
2194
|
-
"properties": {
|
|
2195
|
-
"x": {
|
|
2196
|
-
"description": "Indicates x coordinate",
|
|
2197
|
-
"type": "number",
|
|
2198
|
-
"title": "x"
|
|
2199
|
-
},
|
|
2200
|
-
"y": {
|
|
2201
|
-
"description": "Indicates y coordinate",
|
|
2202
|
-
"type": "number",
|
|
2203
|
-
"title": "y"
|
|
2204
|
-
}
|
|
2205
|
-
},
|
|
2206
|
-
"required": [
|
|
2207
|
-
"x",
|
|
2208
|
-
"y"
|
|
2209
|
-
]
|
|
2210
|
-
},
|
|
2211
|
-
"outerPoint": {
|
|
2212
|
-
"title": "Point",
|
|
2213
|
-
"type": "object",
|
|
2214
|
-
"properties": {
|
|
2215
|
-
"x": {
|
|
2216
|
-
"description": "Indicates x coordinate",
|
|
2217
|
-
"type": "number",
|
|
2218
|
-
"title": "x"
|
|
2219
|
-
},
|
|
2220
|
-
"y": {
|
|
2221
|
-
"description": "Indicates y coordinate",
|
|
2222
|
-
"type": "number",
|
|
2223
|
-
"title": "y"
|
|
2224
|
-
}
|
|
2225
|
-
},
|
|
2226
|
-
"required": [
|
|
2227
|
-
"x",
|
|
2228
|
-
"y"
|
|
2229
|
-
]
|
|
2230
|
-
},
|
|
2231
2526
|
"closed": {
|
|
2232
2527
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
2233
2528
|
"type": "boolean",
|
|
@@ -2426,46 +2721,6 @@
|
|
|
2426
2721
|
"y"
|
|
2427
2722
|
]
|
|
2428
2723
|
},
|
|
2429
|
-
"center": {
|
|
2430
|
-
"title": "Point",
|
|
2431
|
-
"type": "object",
|
|
2432
|
-
"properties": {
|
|
2433
|
-
"x": {
|
|
2434
|
-
"description": "Indicates x coordinate",
|
|
2435
|
-
"type": "number",
|
|
2436
|
-
"title": "x"
|
|
2437
|
-
},
|
|
2438
|
-
"y": {
|
|
2439
|
-
"description": "Indicates y coordinate",
|
|
2440
|
-
"type": "number",
|
|
2441
|
-
"title": "y"
|
|
2442
|
-
}
|
|
2443
|
-
},
|
|
2444
|
-
"required": [
|
|
2445
|
-
"x",
|
|
2446
|
-
"y"
|
|
2447
|
-
]
|
|
2448
|
-
},
|
|
2449
|
-
"outerPoint": {
|
|
2450
|
-
"title": "Point",
|
|
2451
|
-
"type": "object",
|
|
2452
|
-
"properties": {
|
|
2453
|
-
"x": {
|
|
2454
|
-
"description": "Indicates x coordinate",
|
|
2455
|
-
"type": "number",
|
|
2456
|
-
"title": "x"
|
|
2457
|
-
},
|
|
2458
|
-
"y": {
|
|
2459
|
-
"description": "Indicates y coordinate",
|
|
2460
|
-
"type": "number",
|
|
2461
|
-
"title": "y"
|
|
2462
|
-
}
|
|
2463
|
-
},
|
|
2464
|
-
"required": [
|
|
2465
|
-
"x",
|
|
2466
|
-
"y"
|
|
2467
|
-
]
|
|
2468
|
-
},
|
|
2469
2724
|
"closed": {
|
|
2470
2725
|
"description": "Indicates if mark is closed if type is polygon, sine",
|
|
2471
2726
|
"type": "boolean",
|
|
@@ -2588,134 +2843,6 @@
|
|
|
2588
2843
|
"x",
|
|
2589
2844
|
"y"
|
|
2590
2845
|
]
|
|
2591
|
-
},
|
|
2592
|
-
"Arrows": {
|
|
2593
|
-
"title": "Arrows",
|
|
2594
|
-
"type": "object",
|
|
2595
|
-
"properties": {
|
|
2596
|
-
"left": {
|
|
2597
|
-
"description": "Indicates if left arrow is enabled",
|
|
2598
|
-
"type": "boolean",
|
|
2599
|
-
"title": "left"
|
|
2600
|
-
},
|
|
2601
|
-
"right": {
|
|
2602
|
-
"description": "Indicates if right arrow is enabled",
|
|
2603
|
-
"type": "boolean",
|
|
2604
|
-
"title": "right"
|
|
2605
|
-
},
|
|
2606
|
-
"up": {
|
|
2607
|
-
"description": "Indicates if up arrow is enabled",
|
|
2608
|
-
"type": "boolean",
|
|
2609
|
-
"title": "up"
|
|
2610
|
-
},
|
|
2611
|
-
"down": {
|
|
2612
|
-
"description": "Indicates if down arrow is enabled",
|
|
2613
|
-
"type": "boolean",
|
|
2614
|
-
"title": "down"
|
|
2615
|
-
}
|
|
2616
|
-
},
|
|
2617
|
-
"required": [
|
|
2618
|
-
"down",
|
|
2619
|
-
"left",
|
|
2620
|
-
"right",
|
|
2621
|
-
"up"
|
|
2622
|
-
]
|
|
2623
|
-
},
|
|
2624
|
-
"GraphSettings": {
|
|
2625
|
-
"title": "GraphSettings",
|
|
2626
|
-
"type": "object",
|
|
2627
|
-
"properties": {
|
|
2628
|
-
"min": {
|
|
2629
|
-
"description": "Min value",
|
|
2630
|
-
"type": "number",
|
|
2631
|
-
"title": "min"
|
|
2632
|
-
},
|
|
2633
|
-
"max": {
|
|
2634
|
-
"description": "Max value",
|
|
2635
|
-
"type": "number",
|
|
2636
|
-
"title": "max"
|
|
2637
|
-
},
|
|
2638
|
-
"padding": {
|
|
2639
|
-
"description": "Padding value",
|
|
2640
|
-
"type": "number",
|
|
2641
|
-
"title": "padding"
|
|
2642
|
-
},
|
|
2643
|
-
"step": {
|
|
2644
|
-
"description": "Step value",
|
|
2645
|
-
"type": "number",
|
|
2646
|
-
"title": "step"
|
|
2647
|
-
},
|
|
2648
|
-
"labelStep": {
|
|
2649
|
-
"description": "Label step value",
|
|
2650
|
-
"type": "number",
|
|
2651
|
-
"title": "labelStep"
|
|
2652
|
-
},
|
|
2653
|
-
"axisLabel": {
|
|
2654
|
-
"description": "Axis Label",
|
|
2655
|
-
"type": "string",
|
|
2656
|
-
"title": "axisLabel"
|
|
2657
|
-
}
|
|
2658
|
-
},
|
|
2659
|
-
"required": [
|
|
2660
|
-
"axisLabel",
|
|
2661
|
-
"labelStep",
|
|
2662
|
-
"max",
|
|
2663
|
-
"min",
|
|
2664
|
-
"padding",
|
|
2665
|
-
"step"
|
|
2666
|
-
]
|
|
2667
|
-
},
|
|
2668
|
-
"Graph": {
|
|
2669
|
-
"title": "Graph",
|
|
2670
|
-
"type": "object",
|
|
2671
|
-
"properties": {
|
|
2672
|
-
"width": {
|
|
2673
|
-
"description": "Width for graph representation",
|
|
2674
|
-
"type": "number",
|
|
2675
|
-
"title": "width"
|
|
2676
|
-
},
|
|
2677
|
-
"height": {
|
|
2678
|
-
"description": "Height for graph representation",
|
|
2679
|
-
"type": "number",
|
|
2680
|
-
"title": "height"
|
|
2681
|
-
}
|
|
2682
|
-
},
|
|
2683
|
-
"required": [
|
|
2684
|
-
"height",
|
|
2685
|
-
"width"
|
|
2686
|
-
]
|
|
2687
|
-
},
|
|
2688
|
-
"Labels": {
|
|
2689
|
-
"title": "Labels",
|
|
2690
|
-
"type": "object",
|
|
2691
|
-
"properties": {
|
|
2692
|
-
"top": {
|
|
2693
|
-
"description": "Label for top side of the graph",
|
|
2694
|
-
"type": "string",
|
|
2695
|
-
"title": "top"
|
|
2696
|
-
},
|
|
2697
|
-
"bottom": {
|
|
2698
|
-
"description": "Label for bottom side of the graph",
|
|
2699
|
-
"type": "string",
|
|
2700
|
-
"title": "bottom"
|
|
2701
|
-
},
|
|
2702
|
-
"left": {
|
|
2703
|
-
"description": "Label for left side of the graph",
|
|
2704
|
-
"type": "string",
|
|
2705
|
-
"title": "left"
|
|
2706
|
-
},
|
|
2707
|
-
"right": {
|
|
2708
|
-
"description": "Label for right side of the graph",
|
|
2709
|
-
"type": "string",
|
|
2710
|
-
"title": "right"
|
|
2711
|
-
}
|
|
2712
|
-
},
|
|
2713
|
-
"required": [
|
|
2714
|
-
"bottom",
|
|
2715
|
-
"left",
|
|
2716
|
-
"right",
|
|
2717
|
-
"top"
|
|
2718
|
-
]
|
|
2719
2846
|
}
|
|
2720
2847
|
},
|
|
2721
2848
|
"$schema": "http://json-schema.org/draft-07/schema#"
|