This KB illustrates that how to hide the dimensions present in Cube Dimension Browser. Solution:You can remove the dimensions from Cube Dimension Browser in PivotClient, using the following code example with respective to JS, ASP and MVC platforms. JavaScript$(function () { $("#PivotClient").ejPivotClient({ url: "../wcf/OlapClientService.svc", title: "OLAP Browser", chartLoad: "CubeSelector" }); }); <script type="text/javascript"> function CubeSelector(args) { $("#PivotClient li[tag='[Geography]']").remove(); } <script/> ASP<ej:PivotClient ID="PivotClient1" runat="server" Url="../wcf/OlapClientService.svc"> <ClientSideEvents ChartLoad="CubeSelector" /> </ej:PivotClient> <script type="text/javascript"> function CubeSelector(args) { $("#PivotClient li[tag='[Geography]']").remove(); } <script/><script/> MVC@Html.EJ().Pivot().PivotClient("PivotClient1").Url(Url.Content("~/wcf/OlapClientService.svc")).Title("OLAP Browser").ClientSideEvents(oEve => { oEve.ChartLoad("CubeSelector"); }) <script type="text/javascript"> function CubeSelector(args) { $("#PivotClient li[tag='[Geography]']").remove(); } <script/>
|
This page will automatically be redirected to the sign-in page in 10 seconds.