001    package echopoint.style.google.chart;
002    
003    import static echopoint.google.chart.RadarChart.PROPERTY_AXIS_TYPE;
004    
005    /**
006     * The default style class for {@link echopoint.google.chart.RadarChart}
007     * components.
008     *
009     * @author Rakesh Vidyadharan 2009-05-20
010     * @version $Id: RadarChartStyle.java 204 2009-05-20 18:50:57Z sptrakesh $
011     */
012    public class RadarChartStyle extends AdvancedChartStyle
013    {
014      private static final long serialVersionUID = 1l;
015    
016      /** {@inheritDoc} */
017      @Override
018      protected void init()
019      {
020        super.init();
021    
022        set( PROPERTY_AXIS_TYPE, "x" );
023      }
024    }