Chart FX for Java 6.5

SoftwareFX.ChartFX
Class AxisSection

java.lang.Object
  extended by SoftwareFX.ChartFX.AxisSectionBase
      extended by SoftwareFX.ChartFX.AxisSection

public final class AxisSection
extends AxisSectionBase

Provides access to the AxisSection object.

This Class is used to customize chart AxisSection objects. By creating axis sections, the supported Class members allow the developer to assign visual attributes to the newly created axis sections. By allowing this customization, developers can focus end user's attention on particular values in the chart or display additional detail.

The Axis Section implementation is another analytical feature embedded into Chart FX. Utilizing this object in your charting applications allows end users to quickly identify focus areas of a chart and determine whether values fall into this range. This analytic enhancement makes data driven charts more pleasing to the eye and easily deciphered by users.


Constructor Summary
AxisSection()
           
 
Method Summary
 java.awt.Color getBackColor()
          Gets the BackColor.
 int getFontStyle()
          Gets the FontStyle.
 double getFrom()
          Gets the From.
 double getTo()
          Gets the To.
 void setBackColor(java.awt.Color value)
          Gets or sets the AxisSection background color.
 void setFontStyle(int value)
          Gets or sets additional font attributes to the selelcted AxisSection object.
 void setFrom(double value)
          Gets or sets a value indicating the beginning value of the range for a selected AxisSection object.
 void setTo(double value)
          Gets or sets a value indicating the ending value of the range for a selected AxisSection object.
 
Methods inherited from class SoftwareFX.ChartFX.AxisSectionBase
getAlternateColor, getGrid, getLink, getMinorGrid, getMinorTickMark, getTextColor, getTickMark, isGridlines, isMinorGridlines, setAlternateColor, setGridlines, setMinorGridlines, setMinorTickMark, setTextColor, setTickMark
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

AxisSection

public AxisSection()
Method Detail

getBackColor

public java.awt.Color getBackColor()

Gets the BackColor. For more detail see setBackColor(java.awt.Color).


getFontStyle

public int getFontStyle()

Gets the FontStyle. For more detail see setFontStyle(int).


getFrom

public double getFrom()

Gets the From. For more detail see setFrom(double).


getTo

public double getTo()

Gets the To. For more detail see setTo(double).


setBackColor

public void setBackColor(java.awt.Color value)

Gets or sets the AxisSection background color.

Remarks:
  • The Axis.getSections() member returns an AxisSection object which may be configured using the AxisSection class members.

  • The setFrom(double) member is used to specify the beginning value of the section range for a selected AxisSection object.

  • The setTo(double) member is used to specify the ending value of the section range for a selected AxisSection object.

  • See Also:
    Axis.getSections(), setFrom(double), setTo(double), Axis, AxisSection

    setFontStyle

    public void setFontStyle(int value)

    Gets or sets additional font attributes to the selelcted AxisSection object.

    Values:
    FontStyle : Specifies style information applied to text.
    ValueDescription
    FontStyle.BOLDBold text.
    FontStyle.ITALICItalic text.
    FontStyle.REGULARRegular text.
    FontStyle.STRIKEOUTText with a line through the middle.
    FontStyle.UNDERLINEUnderline text.

    Remarks:
  • The Axis.getSections() member returns an AxisSection object which may be configured using the AxisSection class members.

  • The setFrom(double) member is used to specify the beginning value of the section range for a selected AxisSection object.

  • The setTo(double) member is used to specify the ending value of the section range for a selected AxisSection object.

  • See Also:
    Axis.getSections(), setFrom(double), setTo(double), AxisSection

    setFrom

    public void setFrom(double value)

    Gets or sets a value indicating the beginning value of the range for a selected AxisSection object.

    Remarks:
  • The setTo(double) property is used to specify the ending value of the section range for a selected AxisSection object.

  • The setFontStyle(int) property is used to configure additional font attributes for the selected axis section.

  • The Axis.getSections() member returns an AxisSection object which may be configured using the AxisSection class members.

  • See Also:
    setTo(double), setFontStyle(int)

    setTo

    public void setTo(double value)

    Gets or sets a value indicating the ending value of the range for a selected AxisSection object.

    Remarks:
  • The setFrom(double) property is used to specify the beginning value of the section range for a selected AxisSection object.

  • The setFontStyle(int) member is used to configure additional font attributes for the selected axis section.

  • The Axis.getSections() member returns an AxisSection object which may be configured using the AxisSection class members.

  • See Also:
    setFrom(double), setFontStyle(int)

    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.