001    package echopoint.style.google.chart;
002    
003    import static echopoint.google.chart.LineChart.PROPERTY_AXIS_STYLES;
004    
005    /**
006     * A default style class for the {@link echopoint.google.chart.LineChart}
007     * component.
008     *
009     * @author Rakesh Vidyadharan 2009-05-19
010     * @version $Id: LineChartStyle.java 204 2009-05-20 18:50:57Z sptrakesh $
011     */
012    public class LineChartStyle 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_STYLES, "0,00ff33,13,1|1,0033ff,13,-1" );
023      }
024    }