|
POST
|
Hello @AndreaC, Sorry for the delay, I had to inquire with some colleagues as this was a bit outside of my technical skillset. Apparently attribution is dynamic and changes based on zoom scale and extent. Hub tries to assume a min-scale for displaying the layer, so you may just need to zoom in to see the attribution text you expect.
... View more
02-18-2022
11:45 AM
|
0
|
0
|
2045
|
|
POST
|
Hello, I'm sorry you're having issues. Based on the picture you've provided, I think you are referring to the table widget used in Map Viewer or perhaps, ArcGIS Dashboards. If so, you may find reposting this issue in one of those product-specific communities may get you a faster response as this community is specific to ArcGIS Hub and we do not work directly on the table widget you have shown. ArcGIS Online: https://community.esri.com/t5/arcgis-online/ct-p/arcgis-online ArcGIS Dashboards: https://community.esri.com/t5/arcgis-dashboards/ct-p/arcgis-dashboards
... View more
02-17-2022
05:57 AM
|
0
|
0
|
1145
|
|
POST
|
Hi @GayleNeufeld, If you want to display a dashboard within your Hub homepage, you can use the iframe Card to display your dashboard as an embed. In the iframe settings height field, you will want to use vh units (eg. 100vh), which represent "viewport height," and you can actually do CSS calculations if you need to subtract the footer from that measurement. calc(100vh - 100px) 100px being the height of your footer; re-adjust as necessary if your footer is a different height. You can also set the settings on the Row Card that contains the iframe to a "Wide" layout to create a full-width effect and have the dashboard fill the width of a user's browser screen.
... View more
02-11-2022
01:45 PM
|
0
|
1
|
1807
|
|
POST
|
Hi @AndreaC, Would you be able to provide links to the data examples you are referencing and your hub site?
... View more
02-10-2022
02:15 PM
|
0
|
0
|
2061
|
|
POST
|
Hello, I'm sorry you are experiencing this problem. Just to confirm, the COVID dashboard does have the same Sharing Level as the other apps, correct? Would you be able to share the url to your site? And the url to the dashboard?
... View more
02-10-2022
01:54 PM
|
0
|
3
|
2232
|
|
POST
|
Hello @AndreaC, In Hub, the default basemap associated with a site is the gray basemap, which contains the attribution "powered by Esri." If you're referring to public data you've shared that displays in our aggregate site: http://hub.arcgis.com, unfortunately, that also defaults to the gray basemap so the copyright won't be reflected. However, if you're referring to maps hosted on your own site, you can change the basemap by going to the Layout Editor for your site, selecting Settings, and then selecting Set Basemap. If you don't see the basemap that you are using in Online, it likely means you need to add the basemap to your organization's basemap gallery group: https://www.esri.com/arcgis-blog/products/arcgis-online/mapping/custom-basemap-gallery/ as this is what Hub references to populate the "Set Basemap" options list.
... View more
02-10-2022
12:10 PM
|
0
|
0
|
2071
|
|
POST
|
Hello, I'm very sorry that you are having this issue. This isn't expected and we'll look into it. I'll update you once I have more information.
... View more
02-03-2022
08:19 AM
|
0
|
0
|
895
|
|
POST
|
@NFlourish, While I know we applied margins on some elements - like the Text Card - so that they wouldn't be flush up against the edges of the row in wide layouts, I honestly do not recall the reasoning for the chart card. I can bring it up to the team as something we may want to change, but since it would likely affect a lot of other sites, it's hard to know the repercussions of doing that. However, I can give you a code snippet that will fix it for your site. If you add a class to the row, which can be found in the Appearance section of row settings: Then in a Text Card somewhere on the page, if you select the </> Edit in HTML button, you can add an embedded style that can target the row. In the Text Card HTML editor, you want to add: .no-margins-chart .wideRowClass .chart-card { margin: 0px; } You do want to be careful to always wrap any system level classes (.wideRowClass .chart-card) in something unique because otherwise our CSS might collide with your styling. But with a unique row class wrapped around the system classes, you should be fine. Hope that helps!
... View more
01-27-2022
10:53 AM
|
0
|
0
|
2052
|
|
POST
|
Thanks! I didn't realize you were using the "wide" layout in your row. Now I can reproduce on my own site. You can change your site back to the settings you had before. I'll take a look at the issue and get back to you.
... View more
01-26-2022
02:38 PM
|
0
|
1
|
2061
|
|
POST
|
Would you be able to temporarily make the site public so I can take a look?
... View more
01-26-2022
02:22 PM
|
0
|
3
|
2064
|
|
POST
|
Hi @NFlourish, I'm sorry that you are experiencing issues. Do you have a public url that you could share? I am unable to reproduce this issue on my own site and the two cards (map card, chart card) really should be at the same baseline height, especially since you have the titles off on both. This seems like a bug, but it'd help if I could inspect your site.
... View more
01-26-2022
11:43 AM
|
0
|
5
|
2071
|
|
POST
|
Hi @JohnWolf2, While we do not have the same built-in attribute functionality that Story Maps has, you can add attribution to row background images through the Text Card. In my example here: https://stop-the-spotted-lanternfly-qa-pre-hub.hubqa.arcgis.com/ I have a Text Card to which I've added an attribution source link. If you add a full-width Text Card, then select "Edit in HTML" you can essentially copy my code below. Feel free to change the color or font-size as you wish. The Bootstrap class "pull-right" right-aligns the text, if you wish to have left-aligned text, just remove the class and it will default to that. <span style="color: #fff; font-size: 14px;" class="pull-right">Image Source: <a href="https://www.flickr.com/photos/usdagov/30776349158/" style="color: #fff;">USDA</a></span> If you need to darken or lighten the background of the text to improve contrast over top of your image, you can also add a background-style and some padding to the span tag. <span style="color: #fff; font-size: 14px; background-color: rgba(0, 0, 0, 0.3); padding: 2px 3px;" class="pull-right">Image Source: <a href="https://www.flickr.com/photos/usdagov/30776349158/" style="color: #fff;">USDA</a></span> which would give you this affect:
... View more
01-24-2022
06:17 AM
|
1
|
1
|
958
|
|
POST
|
Admittedly, I'm a little over my head when it comes to chart JSON. I'm not sure we have a lot of formal documentation, but there is a sandbox here: https://esri.github.io/cedar/, which links you to the cedar library. I don't know if that really covers the type of documentation you need. The underlying charting technology is https://docs.amcharts.com/3/javascriptcharts, but there will be limitations on what can and cannot be overwritten.
... View more
01-19-2022
07:19 AM
|
1
|
1
|
2048
|
|
POST
|
Hello, I asked a colleague for insight on your issue and he said you can add: "overrides": { "groupPercent": 2 <--- whatever percentage it is } "About groupPercent, if there is more than one slice whose percentage of the pie is less than this number, those slices will be grouped together into one slice. This is the "other" slice. It will always be the last slice in a pie." At line 49, put a comma after the closing bracket, hit return, then add the overrides object. He says you'll have to figure out the actual percentage you need as it's currently defaulting to 5%.
... View more
01-19-2022
06:28 AM
|
1
|
3
|
2056
|
|
POST
|
Hello, Are you asking about updating the thumbnail images that show on content images in the Gallery Card or about showing images as Gallery Card items? Unfortunately, the latter is currently not possible. You can use the Image Card, which supports captions and direct linking to resources. Or if you are comfortable with a little HTML, our Text Card features HTML snippets (look for the plus icon) and you can modify a static card to use your hosted image link. I also have this post with is a little older, but contains some variations on DYI HTML cards, which could be used to highlight images: https://community.esri.com/t5/arcgis-hub-documents/tips-create-custom-cards-with-html/ta-p/920496
... View more
01-11-2022
12:19 PM
|
0
|
3
|
1928
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 7 | 3 weeks ago | |
| 1 | 01-23-2026 09:56 AM | |
| 1 | 04-22-2025 07:38 AM | |
| 1 | 01-30-2025 07:00 AM |
| Online Status |
Offline
|
| Date Last Visited |
2 weeks ago
|