AxisLegendManager.hh 466 Bytes
/*
 * AxisLegendManager.hh
 *
 *  Created on: 23 jan. 2015
 *      Author: AKKA
 */

#ifndef AXISLEGENDMANAGER_HH_
#define AXISLEGENDMANAGER_HH_

#include "PanelPlotOutput.hh"
#include "XYPlot.hh"

namespace plot {

class AxisLegendManager {
	public:
		static void configureYAxisLegendForSeries(PanelPlotOutput* plot);

		static void configureColorAxisLegendForSeries(PanelPlotOutput* plot);

		static void configureXAxisLegendForSeries(XYPlot* plot);
};

}

#endif