rjlopes
rjlopes

Reputation: 2470

How can I set a chart to always show description by default

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?

definition of name and description for the chart

default presentation of the chart without description and toggle using context menu

chart with description - desired result by default

Upvotes: 3

Views: 2243

Answers (1)

sebasm
sebasm

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

Related Questions