use of org.eclipse.nebula.widgets.nattable.layer.ZoomLayer in project nebula.widgets.nattable by eclipse.
the class ZoomedViewportSelectionDataLayerExample method createExampleControl.
@Override
public Control createExampleControl(Composite parent) {
ZoomLayer zoomLayer = new ZoomLayer(new DummyGridLayerStack());
zoomLayer.setZoomFactor(3.0f);
return new NatTable(parent, zoomLayer);
}
Aggregations