Codota Logo
CombinedRangeXYPlot.getRangeAxis
Code IndexAdd Codota to your IDE (free)

How to use
getRangeAxis
method
in
org.jfree.chart.plot.CombinedRangeXYPlot

Best Java code snippets using org.jfree.chart.plot.CombinedRangeXYPlot.getRangeAxis (Showing top 6 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 a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
@Override
public Object clone() throws CloneNotSupportedException {
  CombinedRangeXYPlot result = (CombinedRangeXYPlot) super.clone();
  result.subplots = (List) ObjectUtils.deepClone(this.subplots);
  for (Iterator it = result.subplots.iterator(); it.hasNext();) {
    Plot child = (Plot) it.next();
    child.setParent(result);
  }
  // after setting up all the subplots, the shared range axis may need
  // reconfiguring
  ValueAxis rangeAxis = result.getRangeAxis();
  if (rangeAxis != null) {
    rangeAxis.configure();
  }
  return result;
}
origin: jfree/jfreechart

ValueAxis valueAxis = getRangeAxis();
RectangleEdge valueEdge = Plot.resolveRangeAxisLocation(
  getRangeAxisLocation(), orientation
origin: jfree/jfreechart

ValueAxis axis = getRangeAxis();
RectangleEdge edge = getRangeAxisEdge();
double cursor = RectangleEdge.coordinate(dataArea, edge);
origin: org.codehaus.jtstand/jtstand-chart

ValueAxis axis = getRangeAxis();
RectangleEdge edge = getRangeAxisEdge();
double cursor = RectangleEdge.coordinate(dataArea, edge);
origin: org.codehaus.jtstand/jtstand-chart

ValueAxis valueAxis = getRangeAxis();
RectangleEdge valueEdge = Plot.resolveRangeAxisLocation(
  getRangeAxisLocation(), orientation
origin: org.codehaus.jtstand/jtstand-chart

/**
 * Returns a clone of the plot.
 *
 * @return A clone.
 *
 * @throws CloneNotSupportedException  this class will not throw this
 *         exception, but subclasses (if any) might.
 */
public Object clone() throws CloneNotSupportedException {
  CombinedRangeXYPlot result = (CombinedRangeXYPlot) super.clone();
  result.subplots = (List) ObjectUtilities.deepClone(this.subplots);
  for (Iterator it = result.subplots.iterator(); it.hasNext();) {
    Plot child = (Plot) it.next();
    child.setParent(result);
  }
  // after setting up all the subplots, the shared range axis may need
  // reconfiguring
  ValueAxis rangeAxis = result.getRangeAxis();
  if (rangeAxis != null) {
    rangeAxis.configure();
  }
  return result;
}
org.jfree.chart.plotCombinedRangeXYPlotgetRangeAxis

Popular methods of CombinedRangeXYPlot

  • add
    Adds a subplot with a particular weight (greater than or equal to one). The weight determines how mu
  • calculateAxisSpace
    Calculates the space required for the axes.
  • configureRangeAxes
  • findSubplot
    Returns the subplot (if any) that contains the (x, y) point (specified in Java2D space).
  • fireChangeEvent
  • getFixedLegendItems
  • getFixedRangeAxisSpace
  • getInsets
  • getOrientation
  • getRangeAxisEdge
  • getRangeAxisLocation
  • getSubplots
    Returns the list of subplots. The returned list may be empty, but is never null.
  • getRangeAxisLocation,
  • getSubplots,
  • notifyListeners,
  • setFixedDomainAxisSpaceForSubplots,
  • zoomDomainAxes,
  • <init>,
  • setNotify,
  • setOrientation

Popular in Java

  • Parsing JSON documents to java classes using gson
  • runOnUiThread (Activity)
  • putExtra (Intent)
  • onCreateOptionsMenu (Activity)
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • Connection (java.sql)
    A connection represents a link from a Java application to a database. All SQL statements and results
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • JList (javax.swing)
  • LogFactory (org.apache.commons.logging)
    A minimal incarnation of Apache Commons Logging's LogFactory API, providing just the common Log look
  • Logger (org.apache.log4j)
    This is the central class in the log4j package. Most logging operations, except configuration, are d
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