@vertigis/viewer-spec 60.7.0 → 60.8.0
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/messaging/schema/web-app-operation-definitions.md +30 -0
- package/messaging/schema/web-arcade-operation-definitions.md +93 -0
- package/messaging/schema/web-auth-command-definitions.md +12 -0
- package/messaging/schema/web-auth-operation-definitions.md +16 -0
- package/messaging/schema/web-basemap-command-definitions.md +20 -0
- package/messaging/schema/web-basemap-operation-definitions.md +31 -0
- package/messaging/schema/web-bulk-editing-command-definitions.md +54 -0
- package/messaging/schema/web-charts-command-definitions.md +135 -0
- package/messaging/schema/web-charts-operation-definitions.md +48 -0
- package/messaging/schema/web-drawing-command-definitions.md +551 -0
- package/messaging/schema/web-drawing-operation-definitions.md +720 -0
- package/messaging/schema/web-edit-command-definitions.md +540 -0
- package/messaging/schema/web-edit-operation-definitions.md +50 -0
- package/messaging/schema/web-filter-builder-command-definitions.md +50 -0
- package/messaging/schema/web-filter-builder-operation-definitions.md +18 -0
- package/messaging/schema/web-geocode-operation-definitions.md +132 -0
- package/messaging/schema/web-geolocation-command-definitions.md +27 -0
- package/messaging/schema/web-geolocation-operation-definitions.md +24 -0
- package/messaging/schema/web-geometry-command-definitions.md +34 -0
- package/messaging/schema/web-geometry-operation-definitions.md +438 -0
- package/messaging/schema/web-highlights-command-definitions.md +120 -0
- package/messaging/schema/web-kpi-command-definitions.md +139 -0
- package/messaging/schema/web-kpi-operation-definitions.md +48 -0
- package/messaging/schema/web-layer-comparison-command-definitions.md +214 -0
- package/messaging/schema/web-layer-list-command-definitions.md +30 -0
- package/messaging/schema/web-layers-command-definitions.md +1466 -0
- package/messaging/schema/web-layers-operation-definitions.md +612 -0
- package/messaging/schema/web-licensing-command-definitions.md +24 -0
- package/messaging/schema/web-licensing-operation-definitions.md +26 -0
- package/messaging/schema/web-location-marker-command-definitions.md +209 -0
- package/messaging/schema/web-map-command-definitions.md +2157 -0
- package/messaging/schema/web-map-operation-definitions.md +147 -0
- package/messaging/schema/web-measurement-command-definitions.md +556 -0
- package/messaging/schema/web-measurement-operation-definitions.md +314 -0
- package/messaging/schema/web-messaging-operation-definitions.md +16 -0
- package/messaging/schema/web-panel-command-definitions.md +44 -0
- package/messaging/schema/web-portal-operation-definitions.md +87 -0
- package/messaging/schema/web-printing-command-definitions.md +105 -0
- package/messaging/schema/web-printing-operation-definitions.md +21 -0
- package/messaging/schema/web-project-command-definitions.md +418 -0
- package/messaging/schema/web-project-operation-definitions.md +120 -0
- package/messaging/schema/web-query-builder-command-definitions.md +83 -0
- package/messaging/schema/web-query-builder-operation-definitions.md +18 -0
- package/messaging/schema/web-region-command-definitions.md +6 -0
- package/messaging/schema/web-reports-command-definitions.md +44 -0
- package/messaging/schema/web-results-command-definitions.md +348 -0
- package/messaging/schema/web-results-operation-definitions.md +1242 -0
- package/messaging/schema/web-search-command-definitions.md +6 -0
- package/messaging/schema/web-sketching-command-definitions.md +328 -0
- package/messaging/schema/web-sketching-operation-definitions.md +442 -0
- package/messaging/schema/web-studio-analytics-command-definitions.md +21 -0
- package/messaging/schema/web-system-command-definitions.md +159 -0
- package/messaging/schema/web-system-operation-definitions.md +104 -0
- package/messaging/schema/web-tasks-operation-definitions.md +360 -0
- package/messaging/schema/web-ui-command-definitions.md +340 -0
- package/messaging/schema/web-ui-operation-definitions.md +146 -0
- package/messaging/schema/web-viewer-command-definitions.md +40 -0
- package/messaging/schema/web-viewer-operation-definitions.md +48 -0
- package/messaging/schema/web-workflow-command-definitions.md +47 -0
- package/messaging/schema/web-workflow-operation-definitions.md +45 -0
- package/package.json +8 -7
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
# operation: app.get-persistent-data
|
|
2
|
+
Description: Gets stored data, specified by the arguments (key and scope).
|
|
3
|
+
|
|
4
|
+
Inputs: `StorageDataArgs`
|
|
5
|
+
|
|
6
|
+
StorageDataArgs properties:
|
|
7
|
+
```json
|
|
8
|
+
{
|
|
9
|
+
"key": {
|
|
10
|
+
"description": "The key of the data to store.",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"isRequired": "true"
|
|
13
|
+
},
|
|
14
|
+
"scope": {
|
|
15
|
+
"description": "The scope the data is stored in. Defaults to"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
Outputs: `unknown`
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
# operation: app.get-version
|
|
24
|
+
Description: Gets the current version stamped in the application (i.e. the version of the viewer this application was created with). Web only.
|
|
25
|
+
|
|
26
|
+
Inputs: `None`
|
|
27
|
+
|
|
28
|
+
Outputs: `string`
|
|
29
|
+
|
|
30
|
+
---
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
# operation: arcade.run
|
|
2
|
+
Description: Runs a stringified Arcade script. Web only.
|
|
3
|
+
|
|
4
|
+
- If only a string is passed in as an argument, it is interpreted as an executeScript.
|
|
5
|
+
- If an executeScript is provided, the operation will return its result.
|
|
6
|
+
- If only a canExecute script is provided and it returns a truthy result, the operation will return its input arguments.
|
|
7
|
+
- If a canExecuteScript returns a falsy value, the operation will throw a `Cancellation`.
|
|
8
|
+
|
|
9
|
+
**Example:** Use an Arcade script to query a portal for a featureset, and return the area in square kilometers of the first feature. The output type of this operation is determined by the Arcade script, see https://developers.arcgis.com/arcade/function-reference/ for more information.
|
|
10
|
+
|
|
11
|
+
```
|
|
12
|
+
{
|
|
13
|
+
"executeScript": "Area(First(FeatureSetByPortalItem(Portal(\"https://www.arcgis.com\"),\"6200db0b80de4341ae8ee2b62d606e67\",0,[\"*\"],true)),\"square-kilometers\");"
|
|
14
|
+
}
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Inputs: `( RunArcadeArgs | string )`
|
|
18
|
+
|
|
19
|
+
RunArcadeArgs properties:
|
|
20
|
+
```json
|
|
21
|
+
{
|
|
22
|
+
"arguments": {
|
|
23
|
+
"description": "An arguments object that provides named variables and associated values, which can be referenced from within the executeScript and canExecuteScript. Note that context variables will be passed in if available under the well known arcade variable names: $feature, $features, $map, $layer and $featuremap which is a constructed Arcade dictionary that exposes a feature mapping dictionary keyed via feature source ID with the following values: id, title and features.\n\nNOTE: All variable keys must consist of only lowercase letters; camel-cased context variables will break the script when they are referenced at runtime."
|
|
24
|
+
},
|
|
25
|
+
"canExecuteScript": {
|
|
26
|
+
"description": "The stringified Arcade script used to determine whether or not the executeScript can/should be run. If no executeScript is provided and the canExecuteScript returns a truthy value, the operation will return its input arguments; otherwise, if the canExecuteScript returns a falsy value, it will throw a {@link Cancellation}.",
|
|
27
|
+
"type": "string"
|
|
28
|
+
},
|
|
29
|
+
"executeScript": {
|
|
30
|
+
"description": "The stringified Arcade script to run. If this property is included, the operation will return the result of the script.",
|
|
31
|
+
"type": "string"
|
|
32
|
+
},
|
|
33
|
+
"features": {
|
|
34
|
+
"description": "Features to use for the command/operation."
|
|
35
|
+
},
|
|
36
|
+
"includeContext": {
|
|
37
|
+
"description": "Whether to pass the operation context object into the script. If included, the context object uses the variable name $context.",
|
|
38
|
+
"type": "boolean"
|
|
39
|
+
},
|
|
40
|
+
"includeWorkflowApplicationData": {
|
|
41
|
+
"description": "Whether to pass the current workflow application state into the script. If included, the application state object uses the variable name $workflowdata.",
|
|
42
|
+
"type": "boolean"
|
|
43
|
+
},
|
|
44
|
+
"layers": {
|
|
45
|
+
"description": "Layer(s) to use for the command/operation."
|
|
46
|
+
},
|
|
47
|
+
"maps": {
|
|
48
|
+
"description": "Map(s) to use for the command/operation."
|
|
49
|
+
},
|
|
50
|
+
"watchHandles": {
|
|
51
|
+
"description": "Properties used to set a series of watch handles and/or event listeners on an item that will trigger the canExecuteChanged event for the 'arcade.run' operation.",
|
|
52
|
+
"items": {
|
|
53
|
+
"$ref": "#/definitions/WatchEventHandleProperties",
|
|
54
|
+
"WatchEventHandleProperties": {
|
|
55
|
+
"item": {
|
|
56
|
+
"description": "The item whose properties will be watched for changes and/or events.",
|
|
57
|
+
"isRequired": "true"
|
|
58
|
+
},
|
|
59
|
+
"watch": {
|
|
60
|
+
"anyOf": [
|
|
61
|
+
{
|
|
62
|
+
"$ref": "#/definitions/WatchEventProperty"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"items": {
|
|
66
|
+
"anyOf": [
|
|
67
|
+
{
|
|
68
|
+
"$ref": "#/definitions/WatchEventProperty"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"type": "string"
|
|
72
|
+
}
|
|
73
|
+
]
|
|
74
|
+
},
|
|
75
|
+
"type": "array"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"type": "string"
|
|
79
|
+
}
|
|
80
|
+
],
|
|
81
|
+
"description": "One or more properties on the item that will be watched for changes and/or events. Any strings will be used as propertyPaths that will be watched for changes; for this to work, the item and all properties referenced within the path (except for the last) must implement {@link Observable}.",
|
|
82
|
+
"isRequired": "true"
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
},
|
|
86
|
+
"type": "array"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
```
|
|
90
|
+
|
|
91
|
+
Outputs: `unknown`
|
|
92
|
+
|
|
93
|
+
---
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# command: auth.sign-in
|
|
2
|
+
Description: Initiates user sign-in if they aren't already signed in. The argument indicates whether or not the map should be reloaded when the sign-in is complete. This argument is optional and only supported by VertiGIS Studio Mobile. Default is true.
|
|
3
|
+
|
|
4
|
+
Inputs: `boolean`
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
# command: auth.sign-out
|
|
8
|
+
Description: Signs the user out. The argument indicates whether or not the map should be reloaded when the sign-out is complete. This argument is optional and only supported by VertiGIS Studio Mobile. Default is true.
|
|
9
|
+
|
|
10
|
+
Inputs: `boolean`
|
|
11
|
+
|
|
12
|
+
---
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# operation: auth.get-current-user
|
|
2
|
+
Description: Gets the user that is currently signed into the application.
|
|
3
|
+
|
|
4
|
+
Inputs: `None`
|
|
5
|
+
|
|
6
|
+
Outputs: `Principal`
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
# operation: auth.is-sign-in-available
|
|
10
|
+
Description: Check if sign-in is currently supported by the authentication manager. Web only.
|
|
11
|
+
|
|
12
|
+
Inputs: `None`
|
|
13
|
+
|
|
14
|
+
Outputs: `boolean`
|
|
15
|
+
|
|
16
|
+
---
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# command: basemap.set
|
|
2
|
+
Description: Switch to a configured basemap.
|
|
3
|
+
|
|
4
|
+
Inputs: `SetBasemapArgs`
|
|
5
|
+
|
|
6
|
+
SetBasemapArgs properties:
|
|
7
|
+
```json
|
|
8
|
+
{
|
|
9
|
+
"basemap": {
|
|
10
|
+
"description": "Basemap to be set.",
|
|
11
|
+
"isRequired": "true"
|
|
12
|
+
},
|
|
13
|
+
"map": {
|
|
14
|
+
"description": "Target map.",
|
|
15
|
+
"isRequired": "true"
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
---
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# operation: basemap.get-all
|
|
2
|
+
Description: Gets all configured basemaps.
|
|
3
|
+
|
|
4
|
+
Having argument:
|
|
5
|
+
|
|
6
|
+
- Multiple maps: the union of all basemap options from each
|
|
7
|
+
- No maps: the union of all basemap options for every map in the application.
|
|
8
|
+
|
|
9
|
+
Inputs: `MapsLike`
|
|
10
|
+
|
|
11
|
+
MapsLike properties:
|
|
12
|
+
```json
|
|
13
|
+
{}
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
Outputs: `@vertigis.arcgis-extensions.mapping.BasemapExtension.BasemapExtension[]`
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
# operation: basemap.get-current
|
|
20
|
+
Description: Gets currently selected basemap for the given map. If more than one map is specified, only the first map is used.
|
|
21
|
+
|
|
22
|
+
Inputs: `MapsLike`
|
|
23
|
+
|
|
24
|
+
MapsLike properties:
|
|
25
|
+
```json
|
|
26
|
+
{}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Outputs: `@vertigis.arcgis-extensions.mapping.BasemapExtension.BasemapExtension`
|
|
30
|
+
|
|
31
|
+
---
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# command: bulk-editing.add
|
|
2
|
+
Description: Adds features to the bulk editing session. Used to stage features for updating. Web only.
|
|
3
|
+
|
|
4
|
+
Inputs: `BulkEditingArgs`
|
|
5
|
+
|
|
6
|
+
BulkEditingArgs properties:
|
|
7
|
+
```json
|
|
8
|
+
{
|
|
9
|
+
"features": {
|
|
10
|
+
"description": "Features to use for the command/operation."
|
|
11
|
+
},
|
|
12
|
+
"maps": {
|
|
13
|
+
"description": "Map(s) to use for the command/operation."
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
---
|
|
19
|
+
# command: bulk-editing.display
|
|
20
|
+
Description: Displays the bulk editing interface for a given set of features. Updates the UI to show editable attributes for the provided features. Web only.
|
|
21
|
+
|
|
22
|
+
Inputs: `BulkEditingArgs`
|
|
23
|
+
|
|
24
|
+
BulkEditingArgs properties:
|
|
25
|
+
```json
|
|
26
|
+
{
|
|
27
|
+
"features": {
|
|
28
|
+
"description": "Features to use for the command/operation."
|
|
29
|
+
},
|
|
30
|
+
"maps": {
|
|
31
|
+
"description": "Map(s) to use for the command/operation."
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
# command: bulk-editing.remove
|
|
38
|
+
Description: Removes features from the bulk editing session. Web only.
|
|
39
|
+
|
|
40
|
+
Inputs: `BulkEditingArgs`
|
|
41
|
+
|
|
42
|
+
BulkEditingArgs properties:
|
|
43
|
+
```json
|
|
44
|
+
{
|
|
45
|
+
"features": {
|
|
46
|
+
"description": "Features to use for the command/operation."
|
|
47
|
+
},
|
|
48
|
+
"maps": {
|
|
49
|
+
"description": "Map(s) to use for the command/operation."
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
---
|
|
@@ -0,0 +1,135 @@
|
|
|
1
|
+
# command: charts.add-features
|
|
2
|
+
Description: Adds one or more features to charts. If `chart` is specified, then only the given chart will be updated, otherwise all charts will. Web only.
|
|
3
|
+
|
|
4
|
+
Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
|
|
5
|
+
|
|
6
|
+
Results properties:
|
|
7
|
+
```json
|
|
8
|
+
{
|
|
9
|
+
"features": {
|
|
10
|
+
"description": "Features to use for the command/operation."
|
|
11
|
+
},
|
|
12
|
+
"maps": {
|
|
13
|
+
"description": "Map(s) to use for the command/operation."
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
UpdateChartFeaturesArgs properties:
|
|
19
|
+
```json
|
|
20
|
+
{
|
|
21
|
+
"chart": {
|
|
22
|
+
"description": "The chart(s) to update, referenced by layout ID or chart model.",
|
|
23
|
+
"isRequired": "true"
|
|
24
|
+
},
|
|
25
|
+
"features": {
|
|
26
|
+
"description": "Features to use for the command/operation."
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
# command: charts.clear
|
|
33
|
+
Description: Clear features from active charts. If a chart is specified, then only the given chart will be updated, otherwise all charts will. Web only.
|
|
34
|
+
|
|
35
|
+
Inputs: `( Model | string )`
|
|
36
|
+
|
|
37
|
+
Model properties:
|
|
38
|
+
```json
|
|
39
|
+
{
|
|
40
|
+
"id": {
|
|
41
|
+
"description": "The unique ID for this entity.",
|
|
42
|
+
"type": "string",
|
|
43
|
+
"isRequired": "true"
|
|
44
|
+
},
|
|
45
|
+
"itemType": {
|
|
46
|
+
"description": "The item type for this entity when it participates in an App.",
|
|
47
|
+
"type": "string",
|
|
48
|
+
"isRequired": "true"
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
# command: charts.display
|
|
55
|
+
Description: Updates charts with provided features. Only activated charts that receive features from all required feature sources will get displayed. Web only.
|
|
56
|
+
|
|
57
|
+
Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
|
|
58
|
+
|
|
59
|
+
Results properties:
|
|
60
|
+
```json
|
|
61
|
+
{
|
|
62
|
+
"features": {
|
|
63
|
+
"description": "Features to use for the command/operation."
|
|
64
|
+
},
|
|
65
|
+
"maps": {
|
|
66
|
+
"description": "Map(s) to use for the command/operation."
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
UpdateChartFeaturesArgs properties:
|
|
72
|
+
```json
|
|
73
|
+
{
|
|
74
|
+
"chart": {
|
|
75
|
+
"description": "The chart(s) to update, referenced by layout ID or chart model.",
|
|
76
|
+
"isRequired": "true"
|
|
77
|
+
},
|
|
78
|
+
"features": {
|
|
79
|
+
"description": "Features to use for the command/operation."
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
```
|
|
83
|
+
|
|
84
|
+
---
|
|
85
|
+
# command: charts.remove-features
|
|
86
|
+
Description: Remove one or more features from active charts. If `chart` is specified, then only the given chart will be updated, otherwise all charts will. Web only.
|
|
87
|
+
|
|
88
|
+
Inputs: `( @vertigis.api-docs.Features Feature|FeatureSet|FeatureList|FeatureStream|Feature[] | ( @vertigis.arcgis-extensions.data.Feature.FeatureProperties )[] | Results | UpdateChartFeaturesArgs )`
|
|
89
|
+
|
|
90
|
+
Results properties:
|
|
91
|
+
```json
|
|
92
|
+
{
|
|
93
|
+
"features": {
|
|
94
|
+
"description": "Features to use for the command/operation."
|
|
95
|
+
},
|
|
96
|
+
"maps": {
|
|
97
|
+
"description": "Map(s) to use for the command/operation."
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
UpdateChartFeaturesArgs properties:
|
|
103
|
+
```json
|
|
104
|
+
{
|
|
105
|
+
"chart": {
|
|
106
|
+
"description": "The chart(s) to update, referenced by layout ID or chart model.",
|
|
107
|
+
"isRequired": "true"
|
|
108
|
+
},
|
|
109
|
+
"features": {
|
|
110
|
+
"description": "Features to use for the command/operation."
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
```
|
|
114
|
+
|
|
115
|
+
---
|
|
116
|
+
# command: charts.update-definition
|
|
117
|
+
Description: Updates the definition of a chart. Web only.
|
|
118
|
+
|
|
119
|
+
Inputs: `UpdateChartDefinitionArgs`
|
|
120
|
+
|
|
121
|
+
UpdateChartDefinitionArgs properties:
|
|
122
|
+
```json
|
|
123
|
+
{
|
|
124
|
+
"chart": {
|
|
125
|
+
"description": "The chart to update, referenced by chart model or its ID.",
|
|
126
|
+
"isRequired": "true"
|
|
127
|
+
},
|
|
128
|
+
"definition": {
|
|
129
|
+
"description": "The Highcharts definition with which to update the chart.",
|
|
130
|
+
"isRequired": "true"
|
|
131
|
+
}
|
|
132
|
+
}
|
|
133
|
+
```
|
|
134
|
+
|
|
135
|
+
---
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# operation: charts.get-definition
|
|
2
|
+
Description: Gets the definition of a chart that corresponds to the ID or the ChartModel instance that's passed in as an argument. Web only.
|
|
3
|
+
|
|
4
|
+
Inputs: `ModelRef`
|
|
5
|
+
|
|
6
|
+
ModelRef properties:
|
|
7
|
+
```json
|
|
8
|
+
{
|
|
9
|
+
"id": {
|
|
10
|
+
"description": "The unique ID for this entity.",
|
|
11
|
+
"type": "string",
|
|
12
|
+
"isRequired": "true"
|
|
13
|
+
},
|
|
14
|
+
"itemType": {
|
|
15
|
+
"description": "The item type for this entity when it participates in an App.",
|
|
16
|
+
"type": "string",
|
|
17
|
+
"isRequired": "true"
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
Outputs: `highcharts.highcharts.Options`
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
# operation: charts.get-features
|
|
26
|
+
Description: Returns the current set of features from all active charts. Web only.
|
|
27
|
+
|
|
28
|
+
Inputs: `( Model | string )`
|
|
29
|
+
|
|
30
|
+
Model properties:
|
|
31
|
+
```json
|
|
32
|
+
{
|
|
33
|
+
"id": {
|
|
34
|
+
"description": "The unique ID for this entity.",
|
|
35
|
+
"type": "string",
|
|
36
|
+
"isRequired": "true"
|
|
37
|
+
},
|
|
38
|
+
"itemType": {
|
|
39
|
+
"description": "The item type for this entity when it participates in an App.",
|
|
40
|
+
"type": "string",
|
|
41
|
+
"isRequired": "true"
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
```
|
|
45
|
+
|
|
46
|
+
Outputs: `Features`
|
|
47
|
+
|
|
48
|
+
---
|