How to hide Toolbar, Cube Selector and AxisElementBuilder in OLAP Client?
This KB illustrates that how to hide Toolbar, Cube Selector and AxisElementBuilder in Pivot Client
Solution:
You can hide the toolbar options like cube selector, cube dimension browser and axis element builder in “ajaxComplete” function through the following code example.
JS
$(document).ajaxComplete(function () {
$(".csHeader").hide();
$(".cubeTable").hide();
$(".newReportImg, .loadReportImg, .addReportImg, .removeReportImg").hide();
});