Class RadarSeries
- java.lang.Object
-
- com.cloudofficeprint.RenderElements.Charts.Series.XYSeries
-
- com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
-
- com.cloudofficeprint.RenderElements.Charts.Series.RadarSeries
-
public class RadarSeries extends LineSeries
Represents series for radar charts.
-
-
Constructor Summary
Constructors Constructor Description RadarSeries(java.lang.String name, java.lang.String[] x, java.lang.String[] y, java.lang.String color, java.lang.Boolean smooth, java.lang.String symbol, java.lang.String symbolSize, java.lang.String lineThickness, java.lang.String lineStyle)
This object represents series for a radar chart.
-
Method Summary
-
Methods inherited from class com.cloudofficeprint.RenderElements.Charts.Series.LineSeries
getJSON, getLineStyle, getLineThickness, getSmooth, getSymbol, getSymbolSize, setLineStyle, setLineThickness, setSmooth, setSymbol, setSymbolSize
-
-
-
-
Constructor Detail
-
RadarSeries
public RadarSeries(java.lang.String name, java.lang.String[] x, java.lang.String[] y, java.lang.String color, java.lang.Boolean smooth, java.lang.String symbol, java.lang.String symbolSize, java.lang.String lineThickness, java.lang.String lineStyle)
This object represents series for a radar chart.- Parameters:
name
- Name of the chart.x
- X-data of the chart.y
- Y-data of the chart.color
- Color of the chart.smooth
- Whether the corners of the angels formed in the data-points are smoothened.symbol
- Symbol representing the data-points. Can be square, diamond or triangle.symbolSize
- Size of the symbol representing the data-points in (in em, pt, px, cm or in) e.g. : 20 pt, by default: automatic.lineThickness
- Thickness of the connecting line in em, pt, px, cm or in. e.g. : 20 pt.lineStyle
- Style of the line. Supported options can be found online on the Cloud Office Print documentation.
-
-