org.adempiere.apps.graph.BarGraph:
* fixed indentation * fixed warnings
This commit is contained in:
parent
9ae07a2192
commit
7ca5ab994f
|
@ -58,8 +58,10 @@ import org.jfree.data.category.DefaultCategoryDataset;
|
|||
* @author Jorg Janke
|
||||
* @version $Id: BarGraph.java,v 1.2 2006/07/30 00:51:28 jjanke Exp $
|
||||
*/
|
||||
public class BarGraph extends CPanel implements ChartMouseListener //, ComponentListener //, ActionListener
|
||||
public class BarGraph extends CPanel implements ChartMouseListener
|
||||
{
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*/
|
||||
|
@ -89,8 +91,8 @@ public class BarGraph extends CPanel implements ChartMouseListener //, Component
|
|||
//private Dimension m_size = null;
|
||||
/** Zero/Zero Coordibate point */
|
||||
private Point m_point0_0 = null;
|
||||
/** Layout */
|
||||
private BarGraphLayout m_layout = new BarGraphLayout(this);
|
||||
// /** Layout */
|
||||
// private BarGraphLayout m_layout = new BarGraphLayout(this);
|
||||
|
||||
/** Logger */
|
||||
private static CLogger log = CLogger.getCLogger (BarGraph.class);
|
||||
|
@ -99,8 +101,8 @@ public class BarGraph extends CPanel implements ChartMouseListener //, Component
|
|||
private String m_X_AxisLabel = "X Axis";
|
||||
/** Y Axis Label */
|
||||
private String m_Y_AxisLabel = "Y Axis";
|
||||
/** Y Axis Max */
|
||||
private double m_Y_Max = 0;
|
||||
// /** Y Axis Max */
|
||||
// private double m_Y_Max = 0;
|
||||
/** Y Axis Target Line */
|
||||
private double m_Y_Target = 0;
|
||||
/** Y Axis Target Line Label */
|
||||
|
|
Loading…
Reference in New Issue