Package com.inet.report.chart.plot
Class PolarStyle
- java.lang.Object
-
- com.inet.report.chart.plot.ChartStyle
-
- com.inet.report.chart.plot.PolarStyle
-
- All Implemented Interfaces:
java.io.Serializable
public class PolarStyle extends ChartStyle
This class defines the different styles of the polar chart. This style belongs to the plotPiePlot.- Since:
- 8.0
- See Also:
POLAR,POLAR_STACKED, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description static PolarStylePOLARThe simple polar chart style.static PolarStylePOLAR_STACKEDThe stacked polar chart style.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.util.ListgetAllowedDatasets(Chart2 chart)Returns the list of dataset supported by this chart style.AbstractPlotgetDefaultPlot()Creates a new polar plot and initializes the plot with default settings.-
Methods inherited from class com.inet.report.chart.plot.ChartStyle
hashCode, toString
-
-
-
-
Field Detail
-
POLAR
public static final PolarStyle POLAR
The simple polar chart style.
-
POLAR_STACKED
public static final PolarStyle POLAR_STACKED
The stacked polar chart style.
-
-
Method Detail
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classChartStyle
-
getDefaultPlot
public AbstractPlot getDefaultPlot()
Creates a new polar plot and initializes the plot with default settings.- Specified by:
getDefaultPlotin classChartStyle- Returns:
- the plot of type
PolarPlot. - Since:
- 8.0
- See Also:
AbstractPlot
-
getAllowedDatasets
public java.util.List getAllowedDatasets(Chart2 chart)
Returns the list of dataset supported by this chart style.- Specified by:
getAllowedDatasetsin classChartStyle- Parameters:
chart- the chart- Returns:
- the list of datasets.
- See Also:
Chart2
-
-