All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jwebmp.plugins.jqplot.graphs.JQPlotBubbleGraph Maven / Gradle / Ivy

There is a newer version: 1.2.2.1-jre17
Show newest version
/*
 * Copyright (C) 2017 GedMarc
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package com.jwebmp.plugins.jqplot.graphs;

import com.jwebmp.core.plugins.ComponentInformation;
import com.jwebmp.plugins.jqplot.JQPlotGraph;
import com.jwebmp.plugins.jqplot.graphs.display.JQPlotBubble;
import com.jwebmp.plugins.jqplot.options.JQPlotOptions;
import com.jwebmp.plugins.jqplot.options.series.JQPlotSeriesBubbleOptions;

import java.util.ArrayList;
import java.util.List;

import static com.jwebmp.core.utilities.StaticStrings.*;

/**
 * The Bubble Graph Renderering for the JQ Plot Library
 * 

* * @param * * @author mmagon * @since 2014/07/10 *

*/ @ComponentInformation(name = "Bubble Graph", description = "A bubble graph", url = "http://www.jqplot.com/examples/bubbleChart.php") public class JQPlotBubbleGraph> extends JQPlotGraph { private List bubbles; private JQPlotSeriesBubbleOptions bubbleOptions; /** * Creates a new bubble graph */ public JQPlotBubbleGraph() { getOptions().getSeriesDefaults(); getOptions().getSeriesDefaults() .setRendererOptions(getBubbleOptions()); } /** * Returns the bubble options instance * * @return */ public final JQPlotSeriesBubbleOptions getBubbleOptions() { if (bubbleOptions == null) { bubbleOptions = new JQPlotSeriesBubbleOptions(this); } return bubbleOptions; } /** * Sets the bubble options * * @param bubbleOptions */ public void setBubbleOptions(JQPlotSeriesBubbleOptions bubbleOptions) { this.bubbleOptions = bubbleOptions; } /** * Adds a bubble into the collection with a specified label Labels can be components as well, this will set the HTML escape off *

* * @param x * The X Location * @param y * The Y Location * @param radius * The Radius of the Bubble * @param label * The Label of the Bubble * * @return */ public JQPlotBubble addBubble(double x, double y, int radius, String label) { JQPlotBubble bubble = new JQPlotBubble(x, y, radius, label); getBubbles().add(bubble); return bubble; } /** * Returns a list of all the bubbles * * @return */ public List getBubbles() { if (bubbles == null) { bubbles = new ArrayList<>(); } return bubbles; } /** * Sets the bubbles * * @param bubbles */ public void setBubbles(List bubbles) { this.bubbles = bubbles; } /** * Renders the data points for the bubbles *

* * @return */ @Override public StringBuilder getDataPointRender() { StringBuilder sb = new StringBuilder("[["); for (JQPlotBubble next : getBubbles()) { sb.append(next) .append(STRING_COMMNA); } if (sb.indexOf(STRING_COMMNA) > 0) { sb = sb.deleteCharAt(sb.lastIndexOf(STRING_COMMNA)); } sb.append("]]"); return sb; } @Override public int hashCode() { return super.hashCode(); } @Override public boolean equals(Object o) { return super.equals(o); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy