package cnp.ew.charts;

import cnp.ew.displayer.*;
import cnp.ew.converter.*;

public class CpBarChartLc extends CpAbstractAxisBasedChartLc
{
    public CpBarChartLc()
    {
        super();
        setBackdropDisplayer(new CpChartBackdropDisplayer());
        setValuesDisplayer(new CpBarValuesDisplayer());
        setValueAxisDisplayer(new CpValueAxisDisplayer());
        setCategoryAxisDisplayer(new CpCategoryAxisDisplayer());
    }

    // TBD: this will depend on the orientation of the values
    public CpAbstractAxisDisplayer getVerticalAxisDisplayer()
    {
        return valueAxisDisplayer;
    }

    // TBD: this will depend on the orientation of the values
    public CpAbstractAxisDisplayer getHorizontalAxisDisplayer()
    {
        return categoryAxisDisplayer;
    }

}


