public final class BoxPlot extends java.lang.Object implements IExtension, IGallery
Provides access to the BoxPlot object
A boxplot is a way of summarizing a set of data measured on an interval scale. It is often used in exploratory data analysis. It is a type of graph which is used to show the shape of the distribution, its central value, and variability. The supported members of this class allow the developer to configure additional attributes for a BoxPlot statistical chart.
Constructor and Description |
---|
BoxPlot()
Constructs a newly allocated BoxPlot object
|
Modifier and Type | Method and Description |
---|---|
double |
getOutliersPercentile()
Gets or sets the percentage of a BoxPlot the Outlier should encompass.
|
boolean |
isMonochrome()
Gets or sets a value indicating whether the BoxPlot will be monochrome.
|
boolean |
isNotched()
Gets or sets a value indicating whether the BoxPlot quartile boxes will indent.
|
boolean |
isShowOutliers()
Gets or sets a value instructing the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.
|
void |
resetMonochrome()
Set the property Monochrome to its default value.
|
void |
resetNotched()
Set the property Notched to its default value.
|
void |
resetOutliersPercentile()
Set the property OutliersPercentile to its default value.
|
void |
resetShowOutliers()
Set the property ShowOutliers to its default value.
|
void |
setMonochrome(boolean value)
Gets or sets a value indicating whether the BoxPlot will be monochrome.
|
void |
setNotched(boolean value)
Gets or sets a value indicating whether the BoxPlot quartile boxes will indent.
|
void |
setOutliersPercentile(double value)
Gets or sets the percentage of a BoxPlot the Outlier should encompass.
|
void |
setShowOutliers(boolean value)
Gets or sets a value instructing the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.
|
public boolean isMonochrome()
Gets or sets a value indicating whether the BoxPlot will be monochrome.
isNotched
or to isShowOutliers
. The Notched attribute instructs Chart FX to indent the quartile boxes painted for the graph. The ShowOutliers instructs the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.To configure a BoxPlot as monochrome:
resetMonochrome
public void setMonochrome(boolean value)
Gets or sets a value indicating whether the BoxPlot will be monochrome.
isNotched
or to isShowOutliers
. The Notched attribute instructs Chart FX to indent the quartile boxes painted for the graph. The ShowOutliers instructs the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.To configure a BoxPlot as monochrome:
value
- resetMonochrome
public boolean isNotched()
Gets or sets a value indicating whether the BoxPlot quartile boxes will indent.
(1.57*IQR)/Math.Sqrt(n)
Where, 1.57 represents the .95 in a Normal distribution.
isMonochrome
method to instruct the chart plot to be painted in one color. When Monochrome is set to false, Chart FX uses multiple colors to paint the BoxPlot gallery.isShowOutliers
method instructs the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.To set the isNotched
method to false:
resetNotched
public void setNotched(boolean value)
Gets or sets a value indicating whether the BoxPlot quartile boxes will indent.
(1.57*IQR)/Math.Sqrt(n)
Where, 1.57 represents the .95 in a Normal distribution.
isMonochrome
method to instruct the chart plot to be painted in one color. When Monochrome is set to false, Chart FX uses multiple colors to paint the BoxPlot gallery.isShowOutliers
method instructs the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.To set the isNotched
method to false:
value
- resetNotched
public double getOutliersPercentile()
Gets or sets the percentage of a BoxPlot the Outlier should encompass.
isShowOutliers
method must be set to true in order to see Outliers.resetOutliersPercentile
public void setOutliersPercentile(double value)
Gets or sets the percentage of a BoxPlot the Outlier should encompass.
isShowOutliers
method must be set to true in order to see Outliers.value
- resetOutliersPercentile
public boolean isShowOutliers()
Gets or sets a value instructing the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.
isMonochrome
method to instruct the chart plot to be painted in one color. When Monochrome is set to false, Chart FX uses multiple colors to paint the BoxPlot gallery.isNotched
attribute instructs Chart FX to indent the quartile boxes painted for the graph.To display outliers for the boxplot:
resetShowOutliers
public void setShowOutliers(boolean value)
Gets or sets a value instructing the chart to paint small horizontal lines for values outside the lower and upper limits of the plot.
isMonochrome
method to instruct the chart plot to be painted in one color. When Monochrome is set to false, Chart FX uses multiple colors to paint the BoxPlot gallery.isNotched
attribute instructs Chart FX to indent the quartile boxes painted for the graph.To display outliers for the boxplot:
value
- resetShowOutliers
public void resetMonochrome()
isMonochrome
public void resetNotched()
isNotched
public void resetOutliersPercentile()
setOutliersPercentile
public void resetShowOutliers()
isShowOutliers
2014 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.