[starting from version: 2.3]
It is triggered for "microsoft analysis services"
and "api"
data source types:
olapstructureerror
is triggered when some error appeared while loading the OLAP structure.To track when the structure starts loading, use loadingolapstructure. To make sure that structure was loaded, use olapstructureloaded.
Parameter/Type | Description |
---|---|
params Object | Contains information about the event. |
params.error String | The error message returned from the server side. |
pivot.on('olapstructureerror', function (e) {
alert('Error with olap structure!' + e.error);
});
Check out on JSFiddle.