|
@Html.EJ().Pivot().PivotClient("PivotClient1").Title("OLAP Browser").CollapseCubeBrowserByDefault(true).Url(Url.Content("../api/OlapClient")) |
|
<style>
.cubeSelect {
float: none !important;
padding-left: 0px !important;
}
.cubeText {
margin-bottom: 0px !important;
padding-left: 0px !important;
}
.cubeTableTD {
width:100% !important;
}
.e-toggleExpandButton {
top: -27px !important;
}
</style> |
|
$("#PivotClient").ejPivotClient({
//…
renderSuccess: function (args) {
$(".cubeTableTD").first().css("display", "none");
$(".cdbTD").css("display", "none");
$(".e-csHeader").width("312px");
$(".axisBuilderTD").css("width","300px");
$(".e-controlPanel").css("width", "677px");
}
}); |
|
|