Reputation: 2470
If I define a description for a chart I can manually use the "Toggle chart description" to show the description for a given chart.
How can I define on a per chart or global basis if the description should be visible de default?
Upvotes: 3
Views: 2243
Reputation: 156
You need to get the slice id for the chart you want to keep expanded. Then in Dashboard settings, go to advance and you'll have something like this.
{
"timed_refresh_immune_slices": [],
"expanded_slices": {"36": true},
"refresh_frequency": 0,
"default_filters": "{}",
"color_scheme": null
}
Put your chart/slice id in expanded_slices
, set it to true
and it will always be displayed.
Upvotes: 2