Example usage for com.google.gwt.user.client.ui LayoutPanel layout

List of usage examples for com.google.gwt.user.client.ui LayoutPanel layout

Introduction

In this page you can find the example usage for com.google.gwt.user.client.ui LayoutPanel layout.

Prototype

Layout layout

To view the source code for com.google.gwt.user.client.ui LayoutPanel layout.

Click Source Link

Usage

From source file:main.client.ui.FreeMemoryPortlet.java

License:Open Source License

public FreeMemoryPortlet() {
    LayoutPanel panel = new LayoutPanel();
    initWidget(panel);//from   ww w  .j av a  2 s  . c o m

    panel.add(chart);
    panel.add(label, 24);
    panel.layout();

    DOM.setStyleAttribute(label.getElement(), "textAlign", "center");
}