Customize embeds
Last updated
Last updated
Applicable to stories only (not tiles).
The Additional Panel can be customized to include features like Annotate and Share, Export Data, and Send by Email. To enable or disable these options:
Go to the Advanced Configuration of your Toucan application, accessible from the Settings button in the staging bar.
Edit the app_config
file:
Set true
to enable an option or false
to disable it.
Example: To enable “Annotate & Share,” set: annotateAndShareEnabled: true
.
Enabling the Additional Panel in Embeds
In an Embedded Story: Enable the panel options in the application and activate them in the embed modal.
In an Embedded Dashboard: Enable the options in the app, then add &panel=true
in the embed script.
By default, filters load with the default or first value.
You can set initial filter values by adding them to the embed URL:
ENCODED_FILTER_VALUE
should be JSON-stringified and URI-encoded, formatted depending on the filter type (single, multiple, or date range).
single filters (dropdown, hierarchical, single button): a key-value object with keys being dataset columns and values being values in the dataset row
multiple filters (checkboxes, multiple buttons): an array of single filter values
date range filters: a key-value object with two optional start and end keys and date values
For example, let's say we have a dataset of movies and whether they pass the Bechdel test:
movie_name | bechdel_test | release_year | director_nationality |
---|---|---|---|
The Social Network | fails | 2010 | american |
Gran Torino | fails | 2008 | american |
No Country For Old Men | pass | 2007 | american |
V For Vendetta | pass | 2005 | australian |
Fight Club | fails | 1999 | american |
and three filters:
0953c8d4-c5d0-4f2d-b3ba-e83480c337a3
dropdown on bechdel_test
2896ad55-4e45-49a1-80c2-00b74ae6d857
date range on release_year
7e1050e1-5f9f-433a-aeeb-14b47315c218
checkboxes on director_nationality
For instance, to display only American or Canadian movies from before 2000 that pass the Bechdel test:
Note that URLSearchParams.prototype.set URI-encodes strings for you, so no need to use encodeURIComponent on top of it
That would make your script look like this:
After that initializing your filters, you can programmatically update Filters' values with the SDK.
Applicable only on stories
For stories in small containers or on mobile, stories automatically display in compact mode. To control this manually:
Force compact mode
Disable compact mode
Important
staging
isn't accessible with view
privilege
Toucan provides production and staging versions. To display the staging version, add &stage=staging
to the embed URL:
Set the language of your embed by adding the lang
parameter:
Adjust colors dynamically within the embed script:
What's interesting is that you can dynamically change those colors through the embed script via the colors
attribute for webcomponent or query parameter for iframes.
For example:
Themes | Name | Code |
---|---|---|
Highlights (Active states, selections) | Emphasis |
|
Accent |
| |
Positive |
| |
Warning |
| |
Negative |
| |
Neutral |
| |
Charts (Series data) | Serie #1 |
|
Serie #2 |
| |
Serie #3 |
| |
Serie #4 |
| |
Series #x |
| |
Scales (Quantified data) | Quartile #1 |
|
Quartile #2 |
| |
Quartile #3 |
| |
Quartile #4 |
|
You can also customize by data label.
Basically, tc-series-colors
is a string with data labels in escaped double quotes, followed by the color separate by a space. You can define multiple labels, those groups are separated by commas. The following snippet will color bars with label Level 1 in red and label Level 2 in pink.
Result as:
Note
Custom CSS is a feature flag that we need to activate. By default the Custom CSS stylesheet is hidden as we’re not providing any support on it. To activate the Custom CSS on your instance please contact us.
For fonts, you can use our “Custom CSS” feature that lets you specify CSS rules within the Theme -> Color Scheme Interface. For now, you can only use a font host online. Let us know if it’s a big limitation for you.
Example, with Lato
font:
Result as:
Do you dream about having a complete control over the style of your embeds?
Click here for an example on the Dashboard Builder.