}
@Test
public void example2() {
// EXAMPLE CODE START
RadarPlot plot = Plots.newRadarPlot(Data.newData(80, 50, 50, 80, 60, 80));
Color plotColor = Color.newColor("CC3366");
plot.addShapeMarkers(Shape.SQUARE, plotColor, 12);
plot.addShapeMarkers(Shape.SQUARE, WHITE, 8);
plot.setColor(plotColor);
plot.setLineStyle(LineStyle.newLineStyle(4, 1, 0));
RadarChart chart = GCharts.newRadarChart(plot);
chart.setTitle("Simple Radar Chart", BLACK, 20);
chart.setSize(400, 400);
RadialAxisLabels radialAxisLabels = AxisLabelsFactory.newRadialAxisLabels("Maths", "Arts", "French", "German", "Music");
radialAxisLabels.setRadialAxisStyle(BLACK, 12);