Splitter

11 Feb 20191 minute to read

IMPORTANT

This feature is not applicable for OLAP datasource bound from server-side.

You can resize Cube Dimension Browser and Axis Element Builder by setting EnableSplitter property to true.This property is disabled by default.

  • CSHTML
  • @Html.EJ().Pivot().PivotClient("PivotClient1").ClientSideEvents(clientSideEvents => clientSideEvents.Load("onLoad")).DataSource(dataSource => dataSource.Rows(rows => { rows.FieldName("Country").FieldCaption("Country").Add(); }).Columns(columns => { columns.FieldName("Product").FieldCaption("Product").Add(); }).Values(values => { values.FieldName("Amount").Format("currency").Add(); })).EnableSplitter(true)

    Left move of splitter in ASP NET MVC pivot client control

    Resizing axis element builder in ASP NET MVC pivot client control

    Right move of splitter in ASP NET MVC pivot client control

    Resizing cube dimension browser in ASP NET MVC pivot client control