Tabnine Logo
AbstractXYItemRenderer.getDataBoundsIncludesVisibleSeriesOnly
Code IndexAdd Tabnine to your IDE (free)

How to use
getDataBoundsIncludesVisibleSeriesOnly
method
in
org.jfree.chart.renderer.xy.AbstractXYItemRenderer

Best Java code snippets using org.jfree.chart.renderer.xy.AbstractXYItemRenderer.getDataBoundsIncludesVisibleSeriesOnly (Showing top 4 results out of 315)

origin: jfree/jfreechart

/**
 * Returns the lower and upper bounds (range) of the x-values in the
 * specified dataset.
 *
 * @param dataset  the dataset ({@code null} permitted).
 * @param includeInterval  include the interval (if any) for the dataset?
 *
 * @return The range ({@code null} if the dataset is {@code null}
 *         or empty).
 *
 * @since 1.0.13
 */
protected Range findDomainBounds(XYDataset dataset,
    boolean includeInterval) {
  if (dataset == null) {
    return null;
  }
  if (getDataBoundsIncludesVisibleSeriesOnly()) {
    List visibleSeriesKeys = new ArrayList();
    int seriesCount = dataset.getSeriesCount();
    for (int s = 0; s < seriesCount; s++) {
      if (isSeriesVisible(s)) {
        visibleSeriesKeys.add(dataset.getSeriesKey(s));
      }
    }
    return DatasetUtils.findDomainBounds(dataset,
        visibleSeriesKeys, includeInterval);
  }
  return DatasetUtils.findDomainBounds(dataset, includeInterval);
}
origin: org.codehaus.jtstand/jtstand-chart

  return null;
if (getDataBoundsIncludesVisibleSeriesOnly()) {
  List visibleSeriesKeys = new ArrayList();
  int seriesCount = dataset.getSeriesCount();
origin: jfree/jfreechart

  return null;
if (getDataBoundsIncludesVisibleSeriesOnly()) {
  List visibleSeriesKeys = new ArrayList();
  int seriesCount = dataset.getSeriesCount();
origin: org.codehaus.jtstand/jtstand-chart

  return null;
if (getDataBoundsIncludesVisibleSeriesOnly()) {
  List visibleSeriesKeys = new ArrayList();
  int seriesCount = dataset.getSeriesCount();
org.jfree.chart.renderer.xyAbstractXYItemRenderergetDataBoundsIncludesVisibleSeriesOnly

Popular methods of AbstractXYItemRenderer

  • getLegendItem
    Returns a default legend item for the specified series. Subclasses should override this method to ge
  • initialise
    Initialises the renderer and returns a state object that should be passed to all subsequent calls to
  • addAnnotation
    Adds an annotation to the specified layer and sends a RendererChangeEvent to all registered listener
  • calculateDomainMarkerTextAnchorPoint
    Calculates the (x, y) coordinates for drawing a marker label.
  • calculateLabelAnchorPoint
  • calculateRangeMarkerTextAnchorPoint
    Calculates the (x, y) coordinates for drawing a marker label.
  • clone
    Returns a clone of the renderer.
  • drawDomainLine
    Draws a line perpendicular to the domain axis.
  • equals
    Tests this renderer for equality with another object.
  • findDomainBounds
    Returns the lower and upper bounds (range) of the x-values in the specified dataset.
  • findRangeBounds
    Returns the range of values the renderer requires to display all the items from the specified datase
  • fireChangeEvent
  • findRangeBounds,
  • fireChangeEvent,
  • getAnnotations,
  • getDefaultEntityRadius,
  • getItemCreateEntity,
  • getItemLabelFont,
  • getItemLabelGenerator,
  • getItemLabelPaint,
  • getLegendItemToolTipGenerator

Popular in Java

  • Reading from database using SQL prepared statement
  • getContentResolver (Context)
  • getExternalFilesDir (Context)
  • addToBackStack (FragmentTransaction)
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Arrays (java.util)
    This class contains various methods for manipulating arrays (such as sorting and searching). This cl
  • GregorianCalendar (java.util)
    GregorianCalendar is a concrete subclass of Calendarand provides the standard calendar used by most
  • Options (org.apache.commons.cli)
    Main entry-point into the library. Options represents a collection of Option objects, which describ
  • Join (org.hibernate.mapping)
  • Option (scala)
  • Top 12 Jupyter Notebook extensions
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now