use of org.activityinfo.client.report.editor.chart.PivotFilterPanel in project activityinfo by bedatadriven.
the class PivotTableEditor method createFilterPane.
private void createFilterPane() {
filterPane = new PivotFilterPanel(eventBus, service);
filterPane.applyBaseFilter(new Filter());
BorderLayoutData west = new BorderLayoutData(Style.LayoutRegion.WEST);
west.setMinSize(250);
west.setSize(250);
west.setCollapsible(true);
west.setSplit(true);
west.setMargins(new Margins(0, 0, 0, 0));
add(filterPane, west);
}
Aggregations