@pie-element/graphing 3.5.4-next.1169 → 3.5.4-next.1177
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/configure/lib/configure.js +3 -0
- package/configure/lib/configure.js.map +1 -1
- package/configure/lib/defaults.js +191 -0
- package/configure/lib/defaults.js.map +1 -1
- package/configure/lib/graphing-config.js +90 -35
- package/configure/lib/graphing-config.js.map +1 -1
- package/configure/package.json +3 -3
- package/docs/config-schema.json +553 -1
- package/docs/config-schema.json.md +349 -1
- package/docs/pie-schema.json +337 -129
- package/docs/pie-schema.json.md +212 -80
- package/package.json +5 -5
package/docs/pie-schema.json
CHANGED
|
@@ -2043,6 +2043,342 @@
|
|
|
2043
2043
|
}
|
|
2044
2044
|
}
|
|
2045
2045
|
},
|
|
2046
|
+
"GridConfigurationsProp": {
|
|
2047
|
+
"title": "GridConfigurationsProp",
|
|
2048
|
+
"type": "object",
|
|
2049
|
+
"properties": {
|
|
2050
|
+
"label": {
|
|
2051
|
+
"description": "Indicates the label for the configuration",
|
|
2052
|
+
"type": "string",
|
|
2053
|
+
"title": "label"
|
|
2054
|
+
},
|
|
2055
|
+
"arrows": {
|
|
2056
|
+
"title": "Arrows",
|
|
2057
|
+
"type": "object",
|
|
2058
|
+
"properties": {
|
|
2059
|
+
"left": {
|
|
2060
|
+
"description": "Indicates if left arrow is enabled",
|
|
2061
|
+
"type": "boolean",
|
|
2062
|
+
"title": "left"
|
|
2063
|
+
},
|
|
2064
|
+
"right": {
|
|
2065
|
+
"description": "Indicates if right arrow is enabled",
|
|
2066
|
+
"type": "boolean",
|
|
2067
|
+
"title": "right"
|
|
2068
|
+
},
|
|
2069
|
+
"up": {
|
|
2070
|
+
"description": "Indicates if up arrow is enabled",
|
|
2071
|
+
"type": "boolean",
|
|
2072
|
+
"title": "up"
|
|
2073
|
+
},
|
|
2074
|
+
"down": {
|
|
2075
|
+
"description": "Indicates if down arrow is enabled",
|
|
2076
|
+
"type": "boolean",
|
|
2077
|
+
"title": "down"
|
|
2078
|
+
}
|
|
2079
|
+
},
|
|
2080
|
+
"required": [
|
|
2081
|
+
"down",
|
|
2082
|
+
"left",
|
|
2083
|
+
"right",
|
|
2084
|
+
"up"
|
|
2085
|
+
]
|
|
2086
|
+
},
|
|
2087
|
+
"domain": {
|
|
2088
|
+
"title": "GraphSettings",
|
|
2089
|
+
"type": "object",
|
|
2090
|
+
"properties": {
|
|
2091
|
+
"min": {
|
|
2092
|
+
"description": "Min value",
|
|
2093
|
+
"type": "number",
|
|
2094
|
+
"title": "min"
|
|
2095
|
+
},
|
|
2096
|
+
"max": {
|
|
2097
|
+
"description": "Max value",
|
|
2098
|
+
"type": "number",
|
|
2099
|
+
"title": "max"
|
|
2100
|
+
},
|
|
2101
|
+
"padding": {
|
|
2102
|
+
"description": "Padding value",
|
|
2103
|
+
"type": "number",
|
|
2104
|
+
"title": "padding"
|
|
2105
|
+
},
|
|
2106
|
+
"step": {
|
|
2107
|
+
"description": "Step value",
|
|
2108
|
+
"type": "number",
|
|
2109
|
+
"title": "step"
|
|
2110
|
+
},
|
|
2111
|
+
"labelStep": {
|
|
2112
|
+
"description": "Label step value",
|
|
2113
|
+
"type": "number",
|
|
2114
|
+
"title": "labelStep"
|
|
2115
|
+
},
|
|
2116
|
+
"axisLabel": {
|
|
2117
|
+
"description": "Axis Label",
|
|
2118
|
+
"type": "string",
|
|
2119
|
+
"title": "axisLabel"
|
|
2120
|
+
}
|
|
2121
|
+
},
|
|
2122
|
+
"required": [
|
|
2123
|
+
"axisLabel",
|
|
2124
|
+
"labelStep",
|
|
2125
|
+
"max",
|
|
2126
|
+
"min",
|
|
2127
|
+
"padding",
|
|
2128
|
+
"step"
|
|
2129
|
+
]
|
|
2130
|
+
},
|
|
2131
|
+
"graph": {
|
|
2132
|
+
"title": "Graph",
|
|
2133
|
+
"type": "object",
|
|
2134
|
+
"properties": {
|
|
2135
|
+
"width": {
|
|
2136
|
+
"description": "Width for graph representation",
|
|
2137
|
+
"type": "number",
|
|
2138
|
+
"title": "width"
|
|
2139
|
+
},
|
|
2140
|
+
"height": {
|
|
2141
|
+
"description": "Height for graph representation",
|
|
2142
|
+
"type": "number",
|
|
2143
|
+
"title": "height"
|
|
2144
|
+
}
|
|
2145
|
+
},
|
|
2146
|
+
"required": [
|
|
2147
|
+
"height",
|
|
2148
|
+
"width"
|
|
2149
|
+
]
|
|
2150
|
+
},
|
|
2151
|
+
"includeAxes": {
|
|
2152
|
+
"description": "Indicates if the graph axes and labels are enabled",
|
|
2153
|
+
"type": "boolean",
|
|
2154
|
+
"title": "includeAxes"
|
|
2155
|
+
},
|
|
2156
|
+
"labels": {
|
|
2157
|
+
"title": "Labels",
|
|
2158
|
+
"type": "object",
|
|
2159
|
+
"properties": {
|
|
2160
|
+
"top": {
|
|
2161
|
+
"description": "Label for top side of the graph",
|
|
2162
|
+
"type": "string",
|
|
2163
|
+
"title": "top"
|
|
2164
|
+
},
|
|
2165
|
+
"bottom": {
|
|
2166
|
+
"description": "Label for bottom side of the graph",
|
|
2167
|
+
"type": "string",
|
|
2168
|
+
"title": "bottom"
|
|
2169
|
+
},
|
|
2170
|
+
"left": {
|
|
2171
|
+
"description": "Label for left side of the graph",
|
|
2172
|
+
"type": "string",
|
|
2173
|
+
"title": "left"
|
|
2174
|
+
},
|
|
2175
|
+
"right": {
|
|
2176
|
+
"description": "Label for right side of the graph",
|
|
2177
|
+
"type": "string",
|
|
2178
|
+
"title": "right"
|
|
2179
|
+
}
|
|
2180
|
+
},
|
|
2181
|
+
"required": [
|
|
2182
|
+
"bottom",
|
|
2183
|
+
"left",
|
|
2184
|
+
"right",
|
|
2185
|
+
"top"
|
|
2186
|
+
]
|
|
2187
|
+
},
|
|
2188
|
+
"padding": {
|
|
2189
|
+
"description": "Indicates if padding is enabled",
|
|
2190
|
+
"type": "boolean",
|
|
2191
|
+
"title": "padding"
|
|
2192
|
+
},
|
|
2193
|
+
"range": {
|
|
2194
|
+
"title": "GraphSettings",
|
|
2195
|
+
"type": "object",
|
|
2196
|
+
"properties": {
|
|
2197
|
+
"min": {
|
|
2198
|
+
"description": "Min value",
|
|
2199
|
+
"type": "number",
|
|
2200
|
+
"title": "min"
|
|
2201
|
+
},
|
|
2202
|
+
"max": {
|
|
2203
|
+
"description": "Max value",
|
|
2204
|
+
"type": "number",
|
|
2205
|
+
"title": "max"
|
|
2206
|
+
},
|
|
2207
|
+
"padding": {
|
|
2208
|
+
"description": "Padding value",
|
|
2209
|
+
"type": "number",
|
|
2210
|
+
"title": "padding"
|
|
2211
|
+
},
|
|
2212
|
+
"step": {
|
|
2213
|
+
"description": "Step value",
|
|
2214
|
+
"type": "number",
|
|
2215
|
+
"title": "step"
|
|
2216
|
+
},
|
|
2217
|
+
"labelStep": {
|
|
2218
|
+
"description": "Label step value",
|
|
2219
|
+
"type": "number",
|
|
2220
|
+
"title": "labelStep"
|
|
2221
|
+
},
|
|
2222
|
+
"axisLabel": {
|
|
2223
|
+
"description": "Axis Label",
|
|
2224
|
+
"type": "string",
|
|
2225
|
+
"title": "axisLabel"
|
|
2226
|
+
}
|
|
2227
|
+
},
|
|
2228
|
+
"required": [
|
|
2229
|
+
"axisLabel",
|
|
2230
|
+
"labelStep",
|
|
2231
|
+
"max",
|
|
2232
|
+
"min",
|
|
2233
|
+
"padding",
|
|
2234
|
+
"step"
|
|
2235
|
+
]
|
|
2236
|
+
},
|
|
2237
|
+
"standardGrid": {
|
|
2238
|
+
"description": "Indicates if some domain values will be synched to the range values",
|
|
2239
|
+
"type": "boolean",
|
|
2240
|
+
"title": "standardGrid"
|
|
2241
|
+
},
|
|
2242
|
+
"title": {
|
|
2243
|
+
"description": "Indicates graph title",
|
|
2244
|
+
"type": "string",
|
|
2245
|
+
"title": "title"
|
|
2246
|
+
}
|
|
2247
|
+
},
|
|
2248
|
+
"required": [
|
|
2249
|
+
"domain",
|
|
2250
|
+
"graph",
|
|
2251
|
+
"range"
|
|
2252
|
+
]
|
|
2253
|
+
},
|
|
2254
|
+
"Arrows": {
|
|
2255
|
+
"title": "Arrows",
|
|
2256
|
+
"type": "object",
|
|
2257
|
+
"properties": {
|
|
2258
|
+
"left": {
|
|
2259
|
+
"description": "Indicates if left arrow is enabled",
|
|
2260
|
+
"type": "boolean",
|
|
2261
|
+
"title": "left"
|
|
2262
|
+
},
|
|
2263
|
+
"right": {
|
|
2264
|
+
"description": "Indicates if right arrow is enabled",
|
|
2265
|
+
"type": "boolean",
|
|
2266
|
+
"title": "right"
|
|
2267
|
+
},
|
|
2268
|
+
"up": {
|
|
2269
|
+
"description": "Indicates if up arrow is enabled",
|
|
2270
|
+
"type": "boolean",
|
|
2271
|
+
"title": "up"
|
|
2272
|
+
},
|
|
2273
|
+
"down": {
|
|
2274
|
+
"description": "Indicates if down arrow is enabled",
|
|
2275
|
+
"type": "boolean",
|
|
2276
|
+
"title": "down"
|
|
2277
|
+
}
|
|
2278
|
+
},
|
|
2279
|
+
"required": [
|
|
2280
|
+
"down",
|
|
2281
|
+
"left",
|
|
2282
|
+
"right",
|
|
2283
|
+
"up"
|
|
2284
|
+
]
|
|
2285
|
+
},
|
|
2286
|
+
"GraphSettings": {
|
|
2287
|
+
"title": "GraphSettings",
|
|
2288
|
+
"type": "object",
|
|
2289
|
+
"properties": {
|
|
2290
|
+
"min": {
|
|
2291
|
+
"description": "Min value",
|
|
2292
|
+
"type": "number",
|
|
2293
|
+
"title": "min"
|
|
2294
|
+
},
|
|
2295
|
+
"max": {
|
|
2296
|
+
"description": "Max value",
|
|
2297
|
+
"type": "number",
|
|
2298
|
+
"title": "max"
|
|
2299
|
+
},
|
|
2300
|
+
"padding": {
|
|
2301
|
+
"description": "Padding value",
|
|
2302
|
+
"type": "number",
|
|
2303
|
+
"title": "padding"
|
|
2304
|
+
},
|
|
2305
|
+
"step": {
|
|
2306
|
+
"description": "Step value",
|
|
2307
|
+
"type": "number",
|
|
2308
|
+
"title": "step"
|
|
2309
|
+
},
|
|
2310
|
+
"labelStep": {
|
|
2311
|
+
"description": "Label step value",
|
|
2312
|
+
"type": "number",
|
|
2313
|
+
"title": "labelStep"
|
|
2314
|
+
},
|
|
2315
|
+
"axisLabel": {
|
|
2316
|
+
"description": "Axis Label",
|
|
2317
|
+
"type": "string",
|
|
2318
|
+
"title": "axisLabel"
|
|
2319
|
+
}
|
|
2320
|
+
},
|
|
2321
|
+
"required": [
|
|
2322
|
+
"axisLabel",
|
|
2323
|
+
"labelStep",
|
|
2324
|
+
"max",
|
|
2325
|
+
"min",
|
|
2326
|
+
"padding",
|
|
2327
|
+
"step"
|
|
2328
|
+
]
|
|
2329
|
+
},
|
|
2330
|
+
"Graph": {
|
|
2331
|
+
"title": "Graph",
|
|
2332
|
+
"type": "object",
|
|
2333
|
+
"properties": {
|
|
2334
|
+
"width": {
|
|
2335
|
+
"description": "Width for graph representation",
|
|
2336
|
+
"type": "number",
|
|
2337
|
+
"title": "width"
|
|
2338
|
+
},
|
|
2339
|
+
"height": {
|
|
2340
|
+
"description": "Height for graph representation",
|
|
2341
|
+
"type": "number",
|
|
2342
|
+
"title": "height"
|
|
2343
|
+
}
|
|
2344
|
+
},
|
|
2345
|
+
"required": [
|
|
2346
|
+
"height",
|
|
2347
|
+
"width"
|
|
2348
|
+
]
|
|
2349
|
+
},
|
|
2350
|
+
"Labels": {
|
|
2351
|
+
"title": "Labels",
|
|
2352
|
+
"type": "object",
|
|
2353
|
+
"properties": {
|
|
2354
|
+
"top": {
|
|
2355
|
+
"description": "Label for top side of the graph",
|
|
2356
|
+
"type": "string",
|
|
2357
|
+
"title": "top"
|
|
2358
|
+
},
|
|
2359
|
+
"bottom": {
|
|
2360
|
+
"description": "Label for bottom side of the graph",
|
|
2361
|
+
"type": "string",
|
|
2362
|
+
"title": "bottom"
|
|
2363
|
+
},
|
|
2364
|
+
"left": {
|
|
2365
|
+
"description": "Label for left side of the graph",
|
|
2366
|
+
"type": "string",
|
|
2367
|
+
"title": "left"
|
|
2368
|
+
},
|
|
2369
|
+
"right": {
|
|
2370
|
+
"description": "Label for right side of the graph",
|
|
2371
|
+
"type": "string",
|
|
2372
|
+
"title": "right"
|
|
2373
|
+
}
|
|
2374
|
+
},
|
|
2375
|
+
"required": [
|
|
2376
|
+
"bottom",
|
|
2377
|
+
"left",
|
|
2378
|
+
"right",
|
|
2379
|
+
"top"
|
|
2380
|
+
]
|
|
2381
|
+
},
|
|
2046
2382
|
"LabelsConfigProp": {
|
|
2047
2383
|
"title": "LabelsConfigProp",
|
|
2048
2384
|
"type": "object",
|
|
@@ -2861,135 +3197,7 @@
|
|
|
2861
3197
|
"x",
|
|
2862
3198
|
"y"
|
|
2863
3199
|
]
|
|
2864
|
-
},
|
|
2865
|
-
"Arrows": {
|
|
2866
|
-
"title": "Arrows",
|
|
2867
|
-
"type": "object",
|
|
2868
|
-
"properties": {
|
|
2869
|
-
"left": {
|
|
2870
|
-
"description": "Indicates if left arrow is enabled",
|
|
2871
|
-
"type": "boolean",
|
|
2872
|
-
"title": "left"
|
|
2873
|
-
},
|
|
2874
|
-
"right": {
|
|
2875
|
-
"description": "Indicates if right arrow is enabled",
|
|
2876
|
-
"type": "boolean",
|
|
2877
|
-
"title": "right"
|
|
2878
|
-
},
|
|
2879
|
-
"up": {
|
|
2880
|
-
"description": "Indicates if up arrow is enabled",
|
|
2881
|
-
"type": "boolean",
|
|
2882
|
-
"title": "up"
|
|
2883
|
-
},
|
|
2884
|
-
"down": {
|
|
2885
|
-
"description": "Indicates if down arrow is enabled",
|
|
2886
|
-
"type": "boolean",
|
|
2887
|
-
"title": "down"
|
|
2888
|
-
}
|
|
2889
|
-
},
|
|
2890
|
-
"required": [
|
|
2891
|
-
"down",
|
|
2892
|
-
"left",
|
|
2893
|
-
"right",
|
|
2894
|
-
"up"
|
|
2895
|
-
]
|
|
2896
|
-
},
|
|
2897
|
-
"GraphSettings": {
|
|
2898
|
-
"title": "GraphSettings",
|
|
2899
|
-
"type": "object",
|
|
2900
|
-
"properties": {
|
|
2901
|
-
"min": {
|
|
2902
|
-
"description": "Min value",
|
|
2903
|
-
"type": "number",
|
|
2904
|
-
"title": "min"
|
|
2905
|
-
},
|
|
2906
|
-
"max": {
|
|
2907
|
-
"description": "Max value",
|
|
2908
|
-
"type": "number",
|
|
2909
|
-
"title": "max"
|
|
2910
|
-
},
|
|
2911
|
-
"padding": {
|
|
2912
|
-
"description": "Padding value",
|
|
2913
|
-
"type": "number",
|
|
2914
|
-
"title": "padding"
|
|
2915
|
-
},
|
|
2916
|
-
"step": {
|
|
2917
|
-
"description": "Step value",
|
|
2918
|
-
"type": "number",
|
|
2919
|
-
"title": "step"
|
|
2920
|
-
},
|
|
2921
|
-
"labelStep": {
|
|
2922
|
-
"description": "Label step value",
|
|
2923
|
-
"type": "number",
|
|
2924
|
-
"title": "labelStep"
|
|
2925
|
-
},
|
|
2926
|
-
"axisLabel": {
|
|
2927
|
-
"description": "Axis Label",
|
|
2928
|
-
"type": "string",
|
|
2929
|
-
"title": "axisLabel"
|
|
2930
|
-
}
|
|
2931
|
-
},
|
|
2932
|
-
"required": [
|
|
2933
|
-
"axisLabel",
|
|
2934
|
-
"labelStep",
|
|
2935
|
-
"max",
|
|
2936
|
-
"min",
|
|
2937
|
-
"padding",
|
|
2938
|
-
"step"
|
|
2939
|
-
]
|
|
2940
|
-
},
|
|
2941
|
-
"Graph": {
|
|
2942
|
-
"title": "Graph",
|
|
2943
|
-
"type": "object",
|
|
2944
|
-
"properties": {
|
|
2945
|
-
"width": {
|
|
2946
|
-
"description": "Width for graph representation",
|
|
2947
|
-
"type": "number",
|
|
2948
|
-
"title": "width"
|
|
2949
|
-
},
|
|
2950
|
-
"height": {
|
|
2951
|
-
"description": "Height for graph representation",
|
|
2952
|
-
"type": "number",
|
|
2953
|
-
"title": "height"
|
|
2954
|
-
}
|
|
2955
|
-
},
|
|
2956
|
-
"required": [
|
|
2957
|
-
"height",
|
|
2958
|
-
"width"
|
|
2959
|
-
]
|
|
2960
|
-
},
|
|
2961
|
-
"Labels": {
|
|
2962
|
-
"title": "Labels",
|
|
2963
|
-
"type": "object",
|
|
2964
|
-
"properties": {
|
|
2965
|
-
"top": {
|
|
2966
|
-
"description": "Label for top side of the graph",
|
|
2967
|
-
"type": "string",
|
|
2968
|
-
"title": "top"
|
|
2969
|
-
},
|
|
2970
|
-
"bottom": {
|
|
2971
|
-
"description": "Label for bottom side of the graph",
|
|
2972
|
-
"type": "string",
|
|
2973
|
-
"title": "bottom"
|
|
2974
|
-
},
|
|
2975
|
-
"left": {
|
|
2976
|
-
"description": "Label for left side of the graph",
|
|
2977
|
-
"type": "string",
|
|
2978
|
-
"title": "left"
|
|
2979
|
-
},
|
|
2980
|
-
"right": {
|
|
2981
|
-
"description": "Label for right side of the graph",
|
|
2982
|
-
"type": "string",
|
|
2983
|
-
"title": "right"
|
|
2984
|
-
}
|
|
2985
|
-
},
|
|
2986
|
-
"required": [
|
|
2987
|
-
"bottom",
|
|
2988
|
-
"left",
|
|
2989
|
-
"right",
|
|
2990
|
-
"top"
|
|
2991
|
-
]
|
|
2992
3200
|
}
|
|
2993
3201
|
},
|
|
2994
3202
|
"$schema": "http://json-schema.org/draft-07/schema#"
|
|
2995
|
-
}
|
|
3203
|
+
}
|