How do you add a chart or table in ArcGIS Story Maps?

8276
2
01-23-2018 03:32 PM
emmaorou300SCS
New Contributor

For example on Google Docs, you can 'insert a table' like this one below! This is exactly what I need but I do not know how to insert something like this on the side panel writing of ArcGIS Story Maps??

Header 1Header 2
2 Replies
CarmelConnolly
Esri Regular Contributor

Hi, 

What story map app are you using? Apps | Story Maps 

A number of the apps support working with HTML so it's possible to add a table using any of the tags mentioned here: https://developerscorner.storymaps.arcgis.com/using-custom-html-in-map-journal-70913cfff66e

Here's some basic HTML table help too: HTML Tables 

To replicate the above table in Story Map Journal for example, you'd insert the following code into the the Side Panel by clicking this button:

<html>
<head>
<style>
table, th, td {
 border: 1px solid black;
 border-collapse: collapse;
}
th, td {
 padding: 5px;
 text-align: left;
}
table#t01 {
 width: 100%; 
 background-color: #f1f1c1;
}
</style>
</head>
<body>

<table style="width:100%">
 <tr>
    <th>Header 1</th>
    <th>Header 2</th>
 </tr>
 <tr>
    <td></td>
    <td></td>
 </tr>
 <tr>
    <td></td>
    <td></td>
 </tr>
</table>
<br>

Otherwise you could take a screenshot of the table from Google Docs and load it as an Image into the Story Map. 

Carmel  
NedCake1
Occasional Contributor

Thanks Carmel

Great tip! Here's what we did with it.

https://tlcgis.maps.arcgis.com/apps/MapJournal/index.html?appid=5ebfb4ac76f1437cad51ab37940fbf72&sec... 

Ned Cake

TLCGIS