Insights Dashboard
Browse and manipulate charts created by the current user.

Insights Dashboard
Set up a new instance with
config
parameters and set
/get
methods:const insightsDashboard = appmixer.ui.InsightsDashboard(config)
insightsDashboard.set(key, value)
insightsDashboard.get(key)
insightsDashboard.state(name, value)
Type:
Boolean
| Default: null
Toggle a custom loading state.
Type:
String
| Default: null
Toggle a custom error message.
insightsDashboard.on(event, handler)
insightsDashboard.on('chart:clone', chartId => {/* ... */})
Clone chart.
insightsDashboard.on('chart:remove', chartId => {/* ... */})
Remove chart.
insightsDashboard.on('chart:open', chartId => {/* ... */})
Open chart in Chart Editor.
const insightsDashboard = appmixer.ui.InsightsDashboard({
el: '#insights-dashboard'
})
insightsDashboard.open()
Last modified 2mo ago