Examples of BubbleSeriesEntryLabel


Examples of nl.topicus.wqplot.data.BubbleSeriesEntryLabel

  {
    List<BubbleSeries<Integer, Integer, Integer, Object>> lines =
      new ArrayList<BubbleSeries<Integer, Integer, Integer, Object>>();
    BubbleSeries<Integer, Integer, Integer, Object> arr =
      new BubbleSeries<Integer, Integer, Integer, Object>();
    arr.addEntry(11, 123, 1236, new BubbleSeriesEntryLabel("Acura", "sandybrown"));
    arr.addEntry(45, 92, 1067, new BubbleSeriesEntryLabel("Alfa Romeo", "skyblue"));
    arr.addEntry(24, 104, 1176, new BubbleSeriesEntryLabel("AM General", "salmon"));
    arr.addEntry(50, 23, 610, new BubbleSeriesEntryLabel(null, "papayawhip"));
    arr.addEntry(18, 17, 539, "Audi");
    arr.addEntry(7, 89, 864, null);
    arr.addEntry(2, 13, 1026, "Bugatti");
    lines.add(arr);
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.