Chart FX for Java 6.5

SoftwareFX.ChartFX
Class Radar

java.lang.Object
  extended by SoftwareFX.ChartFX.Radar
All Implemented Interfaces:
IGalleryType

public final class Radar
extends java.lang.Object
implements IGalleryType

Provides access to the Radar gallery object.

The properties of the Radar Class allow you to customize the visual attributes of a Radar chart. In order to make the supported members available, you must first create a 'Radar' gallery object.

Radar myRadar = (Radar) chart1.setGalleryObj();

Once you have done this, using the newly created object you can assign these special attributes for the Radar gallery type in your chart.

In order to use this properly, you will need to set the gallery for the chart to Radar.


Constructor Summary
Radar()
           
 
Method Summary
 boolean isFillArea()
          Gets the FillArea.
 boolean isShowLines()
          Gets the ShowLines.
 void setFillArea(boolean value)
          Used to fill the inside area of a radar chart.
 void setShowLines(boolean value)
          Used to show or hide lines in a Radar chart.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

Radar

public Radar()
Method Detail

isFillArea

public boolean isFillArea()

Gets the FillArea. For more detail see setFillArea(boolean).


isShowLines

public boolean isShowLines()

Gets the ShowLines. For more detail see setShowLines(boolean).


setFillArea

public void setFillArea(boolean value)

Used to fill the inside area of a radar chart.

Remarks:
  • This property is only available when a Radar gallery object has been created.

    Radar myRadar = (Radar) chart1.getGalleryObj();

  • When used in conjunction with a Radar chart, this property may be used to fill the inside area of the points for the radar plot.

  • See Also:
    setShowLines(boolean), ChartCore.setGallery(int), ChartCore.setGalleryObj(SoftwareFX.ChartFX.IGalleryType), Chart

    setShowLines

    public void setShowLines(boolean value)

    Used to show or hide lines in a Radar chart.

    Remarks:
  • This property is only available when a Radar gallery object has been created.

    Radar myRadar = (Radar) chart1.getGalleryObj();

  • When used in conjunction with a Radar chart, this property shows or hides the lines connecting each point in the radar plot.

  • See Also:
    ChartCore.setGallery(int), ChartCore.setGalleryObj(SoftwareFX.ChartFX.IGalleryType), Chart

    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.