Is there a field into which I could place html?
Scenario - I populate many fields in the project through the api which the PMs use for reference information.
I now need to display tables for them, but I can't find a field which could take
<table border="1" class="dataframe">\n <thead>\n <tr style="text-align: right;">\n <th></th>\n <th>a</th>\n <th>b</th>\n </tr>\n </thead>\n <tbody>\n <tr>\n <th>0</th>\n <td>1</td>\n <td>11</td>\n </tr>\n <tr>\n <th>1</th>\n <td>2</td>\n <td>22</td>\n </tr>\n </tbody>\n</table>
for example and show a table.
I tried the Overview fields and those don't render it.
I then created a custom panel and chose html - that renders the above html as a table BUT I can't seem to find a way to reach and update a panel through the api.
Is there a field which can support html table data and render it? or is there a way to update a Custom Panel's data through the api?