Codota Logo
VectorSeriesCollection.getSeries
Code IndexAdd Codota to your IDE (free)

How to use
getSeries
method
in
org.jfree.data.xy.VectorSeriesCollection

Best Java code snippets using org.jfree.data.xy.VectorSeriesCollection.getSeries (Showing top 5 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
StringBuilder s =
  • Codota Iconnew StringBuilder()
  • Codota Iconnew StringBuilder(32)
  • Codota IconString str;new StringBuilder(str)
  • Smart code suggestions by Codota
}
origin: jfree/jfreechart

/**
 * Returns the number of items in the specified series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The item count.
 *
 * @throws IllegalArgumentException if {@code series} is not in the
 *     range {@code 0} to {@code getSeriesCount() - 1}.
 */
@Override
public int getItemCount(int series) {
  // defer argument checking
  return getSeries(series).getItemCount();
}
origin: org.activecomponents.jadex/jadex-kernel-extension-envsupport

VectorSeries ser = dataset.getSeries(seriesnum);
origin: jfree/jfreechart

/**
 * Returns the key for a series.
 *
 * @param series  the series index (in the range {@code 0} to
 *     {@code getSeriesCount() - 1}).
 *
 * @return The key for a series.
 *
 * @throws IllegalArgumentException if {@code series} is not in the
 *     specified range.
 */
@Override
public Comparable getSeriesKey(int series) {
  // defer argument checking
  return getSeries(series).getKey();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the key for a series.
 *
 * @param series  the series index (in the range <code>0</code> to
 *     <code>getSeriesCount() - 1</code>).
 *
 * @return The key for a series.
 *
 * @throws IllegalArgumentException if <code>series</code> is not in the
 *     specified range.
 */
public Comparable getSeriesKey(int series) {
  // defer argument checking
  return getSeries(series).getKey();
}
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns the number of items in the specified series.
 *
 * @param series  the series (zero-based index).
 *
 * @return The item count.
 *
 * @throws IllegalArgumentException if <code>series</code> is not in the
 *     range <code>0</code> to <code>getSeriesCount() - 1</code>.
 */
public int getItemCount(int series) {
  // defer argument checking
  return getSeries(series).getItemCount();
}
org.jfree.data.xyVectorSeriesCollectiongetSeries

Javadoc

Returns a series from the collection.

Popular methods of VectorSeriesCollection

  • getSeriesCount
    Returns the number of series in the collection.
  • fireDatasetChanged
  • getXValue
    Returns the x-value for an item within a series.
  • getYValue
    Returns the y-value for an item within a series.
  • <init>
    Creates a new instance of VectorSeriesCollection.
  • addSeries
    Adds a series to the collection and sends a DatasetChangeEventto all registered listeners.

Popular in Java

  • Reactive rest calls using spring rest template
  • scheduleAtFixedRate (Timer)
  • orElseThrow (Optional)
  • notifyDataSetChanged (ArrayAdapter)
  • BufferedReader (java.io)
    Reads text from a character-input stream, buffering characters so as to provide for the efficient re
  • Permission (java.security)
    Abstract class for representing access to a system resource. All permissions have a name (whose inte
  • TreeMap (java.util)
    A Red-Black tree based NavigableMap implementation. The map is sorted according to the Comparable of
  • ImageIO (javax.imageio)
  • SSLHandshakeException (javax.net.ssl)
    The exception that is thrown when a handshake could not be completed successfully.
  • Join (org.hibernate.mapping)
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now