Chart FX for Java 6.5

SoftwareFX.ChartFX.Statistical
Class StudyLine

java.lang.Object
  extended by SoftwareFX.ChartFX.Statistical.Study
      extended by SoftwareFX.ChartFX.Statistical.StudyInteractive
          extended by SoftwareFX.ChartFX.Statistical.StudyLine
Direct Known Subclasses:
StudyErrorBars, StudyFormula, StudyRegression

public abstract class StudyLine
extends StudyInteractive

Provides access to the StudyLine object.

This class is specifically used to control attributes of studies that utilize a Line object.


Constructor Summary
StudyLine()
           
 
Method Summary
 Line getLine()
          Gets the Line object and exposes the supported members of the Line class.
 boolean isBehind()
          Gets the Behind.
 void setBehind(boolean value)
          Gets or sets a value indicating whether a selected StudyLine object will be painted infront or behind data series in the chart.
 
Methods inherited from class SoftwareFX.ChartFX.Statistical.StudyInteractive
getAxis, isInteractive, isVisible, setAxis, setInteractive, setVisible
 
Methods inherited from class SoftwareFX.ChartFX.Statistical.Study
createStudyAnalysis, createStudyAnalysisMulti, createStudyDistributionFormula, createStudyTest, createStudyTestMulti, getDecimals, getID, getText, getValue, isBold, isIndented, setBold, setDecimals, setIndented, setText, setValue
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StudyLine

public StudyLine()
Method Detail

getLine

public Line getLine()

Gets the Line object and exposes the supported members of the Line class.

Remarks:
  • You can obtain the StudyLine object for a selected study when adding the study to the Studies collection as follows:

    StudyLine sl1 = (StudyLine) statistics1.getStudies().addAnalysis(Analysis.REGRESSION_LINE);

  • This property exposes the Line class members which allows you to customize the width, style, and caps for the selected line.

  • The setBehind(boolean) property allows you to specify whether the selected StudyLine object will be painted infront or behind the chart series.

  • See Also:
    setBehind(boolean), Statistics.getStudies(), StudiesCollection, StudiesCollection, Statistics

    isBehind

    public boolean isBehind()

    Gets the Behind. For more detail see setBehind(boolean).


    setBehind

    public void setBehind(boolean value)

    Gets or sets a value indicating whether a selected StudyLine object will be painted infront or behind data series in the chart.

    Remarks:
  • You can obtain the StudyLine object for a selected study when adding the study to the Studies collection as follows:

    StudyLine sl1 = (StudyLine) statistics1.getStudies().addAnalysis(Analysis.REGRESSION_LINE);

  • The getLine() property exposes additional members to customize the width, style, and caps for the selected line.

  • See Also:
    getLine(), StudiesCollection.add(java.lang.Object), StudiesCollection, Statistics

    http://www.softwarefx.com

    2007 Software FX, Inc. All Rights Reserved. Chart FX is a registered trademark of Software FX, Inc
    All other names are trademarks or registered trademarks of their respective owners.