Examples of SparklineWebMarkupContainer


Examples of com.google.code.jqwicket.ui.sparkline.SparklineWebMarkupContainer

public class SparklinePage extends DemoPage {

  public SparklinePage() {

    add(new SparklineWebMarkupContainer("inlinesparkline"));

    add(new SparklineWebMarkupContainer("dynamicsparkline",
        new SparklineOptions(new float[] { 10, 8, 5, 7, 4, 4, 1 })));
    add(new SparklineWebMarkupContainer("dynamicbar", new SparklineOptions(
        new float[] { 10, 8, 5, 7, 4, 4, 1 }).type(Type.BAR).barColor(
        "green")));
    add(new SparklineWebMarkupContainer("inlinebar", new SparklineOptions()
        .type(Type.BAR).barColor("red")));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.