|
BLOG
|
Once the mobile style has been published as a web style, you can also see the content json in arcgis assistant for the item's resources
... View more
2 weeks ago
|
0
|
0
|
130
|
|
BLOG
|
FYI, DB Browser for sqlite sometimes seems to have an incorrect view of the actual json for an item in the items table: In that case, it is better to verify the content column of the items table using python's sqlite3 library: import sqlite3
# Path to your .stylx file
stylx_path = r"D:\ArcGIS_Projects\<name>.stylx"
newlines = "\n" * 5
# Connect to the SQLite database
conn = sqlite3.connect(stylx_path)
cursor = conn.cursor()
# Query the ITEMS table for NAME and CONTENT columns
cursor.execute("SELECT KEY, CONTENT FROM ITEMS")
rows = cursor.fetchall()
# Define the names you want to match
keys_to_match = {"CB2", "CB3"} # Use a set for fast lookup
# Print each row with clear formatting
for key, content in rows:
if key in keys_to_match:
print(f"Key: {key}\nContent: {content}\n{'-'*40}{newlines}")
conn.close()
... View more
2 weeks ago
|
0
|
0
|
131
|
|
BLOG
|
@megan_r My teammate and I saw that the predefined box sizes can be edited in the items table of the stylx in dbbrowser for SQLite. Specifically, we must edit the x or y axis for the rings in the markerGraphics key. {
"type": "CIMPointSymbol",
"symbolLayers": [
{
"type": "CIMVectorMarker",
"enable": true,
"anchorPointUnits": "Relative",
"dominantSizeAxis3D": "Y",
"size": 50,
"billboardMode3D": "FaceNearPlane",
"frame": {
"xmin": 0,
"ymin": 0,
"xmax": 100,
"ymax": 100
},
"markerGraphics": [
{
"type": "CIMMarkerGraphic",
"geometry": {
"rings": [
[
[80, 60.2],
[79.6, 62],
[78.6, 63.6],
[77, 64.6],
[75.2, 65],
[14.8, 65],
[13, 64.6],
[11.4, 63.6],
[10.4, 62],
[10, 60.2],
[10, 39.8],
[10.4, 38],
[11.4, 36.4],
[13, 35.4],
[14.8, 35],
[75.2, 35],
[77, 35.4],
[78.6, 36.4],
[79.6, 38],
[80, 39.8],
[80, 60.2]
]
]
},
"symbol": {
"type": "CIMPolygonSymbol",
"symbolLayers": [
{
"type": "CIMSolidFill",
"enable": true,
"primitiveName": "cbstatus",
"color": [0, 0, 0, 255]
},
{
"type": "CIMSolidStroke",
"enable": true,
"capStyle": "Round",
"joinStyle": "Round",
"lineStyle3D": "Strip",
"miterLimit": 4,
"width": 4,
"height3D": 1,
"anchor3D": "Center",
"color": [0, 0, 0, 255]
}
],
"angleAlignment": "Map"
}
}
],
"scaleSymbolsProportionally": true,
"respectFrame": true,
"clippingPath": {
"type": "CIMClippingPath",
"clippingType": "Intersect",
"path": {
"rings": [
[
[0, 0],
[100, 0],
[100, 100],
[0, 100],
[0, 0]
]
]
}
}
}
],
"haloSize": 1,
"scaleX": 1,
"angleAlignment": "Display"
} Here is what the rings look like plotted out on a graph: To modify the width, modify the x coordinates respectively.
... View more
2 weeks ago
|
0
|
0
|
135
|
|
BLOG
|
@megan_r How can I add the predefined symbol parts for diferently sized banners for the lookup table? I tried in layout mode, specifying the width and height, but if you change the width, the height also changes: Element properties: The styles pane does not give us access to the width of the symbol:
... View more
2 weeks ago
|
0
|
0
|
157
|
|
POST
|
related bug: https://support.esri.com/en-us/bug/the-description-in-the-indicator-element-is-centered-af-bug-000166462
... View more
11-04-2025
03:55 PM
|
0
|
0
|
60
|
|
POST
|
As of 9/4/2025, the dynamic styling is only available on AGOL.
... View more
09-04-2025
07:08 PM
|
0
|
0
|
735
|
|
POST
|
This is what the Fit to element width in UI option looks like with data center-aligned: Here is the Fit to Data option with dummy elements to the left and right (allows resizing the table width), values left-aligned:
... View more
07-30-2025
03:07 PM
|
0
|
0
|
286
|
|
POST
|
@YvanS What you are experiencing regarding the last column being to wide mainly occurs when the dashboard consists of a table element that takes up the full width of the page. If we were to add other dashboard elements that reduce the overall table container's width, we can make the Fit to data option actually fit better. The use-case for having a table take up the whole page width may be more feasible in a mobile view. ArcGIS Dashboards, as of 07/30/205 provides two options in the UI config: Fit to element width: Fit to data The ArcGIS Assistant json config has a tableSettings > layout key/property. Fit to element width there is written as fit-columns. -Its the same as completely removing the layout key from the json. Fit to data there is written as fit-data-stretch There are other options available that you could experiment with, and see if it fits your data better: fit-data-table fit-data-fill fit-data We can reference these other options looking at another software's (Tabulator) docs: https://tabulator.info/examples/6.3#fittodata
... View more
07-30-2025
02:22 PM
|
0
|
0
|
291
|
|
POST
|
Thank you @Ke_Xu for your inquiry. My main issue is that: data views that are defined for a layer within Experience Builder do not seem to support being controlled by url parameters. Hence, the example I gave where: The main layer (dataSource_1-18a09b4c123-layer-1) works with a url parameter, but The data_view (dataSource_1-18a09b4c123-layer-1-dataView_1) defined from the main layer is not able to be controlled with a url parameter. The only reason I gave the example json of the dynamic text is because that is where ExpB seems to be grabbing the dataSourceId to be able to control the data_view. Alternatively, it appears that the url parameter cannot support data_views as the layer to pass into the data_filter.
... View more
04-18-2025
04:53 PM
|
1
|
0
|
373
|
|
POST
|
Thank you @BrittanyBurson This worked for me, in the case that I have duplicate values. For the category selector, I chose grouped values and single selection.
... View more
04-18-2025
04:32 PM
|
0
|
0
|
1250
|
|
POST
|
https://support.esri.com/en-us/knowledge-base/how-to-transfer-content-from-one-arcgis-online-organiza-000022252
... View more
02-21-2025
09:01 AM
|
1
|
0
|
722
|
|
BLOG
|
Thank you so much for sharing this @JenniferAcunto For reference, here is an additional Esri blog on the topic: https://www.esri.com/arcgis-blog/products/ops-dashboard/real-time/updating-attributes-in-dashboards/
... View more
02-21-2025
06:13 AM
|
0
|
0
|
714
|
|
POST
|
This article is helpful: https://support.esri.com/en-us/knowledge-base/error-editing-is-not-possible-because-the-record-specif-000028842 For me, I had to allow the group within my org access to submit survey (under the collaboration tab):
... View more
02-07-2025
08:14 AM
|
0
|
0
|
2016
|
|
POST
|
Developer documentation on the same: https://developers.arcgis.com/survey123/guide/embed-a-survey-dashboards/
... View more
02-07-2025
07:30 AM
|
0
|
0
|
6019
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-03-2024 07:58 AM | |
| 1 | 01-13-2025 10:30 AM | |
| 1 | 04-18-2025 04:53 PM | |
| 1 | 02-21-2025 09:01 AM | |
| 1 | 12-14-2024 12:05 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|