minor - fixed license header and remove unuse code
This commit is contained in:
parent
0434ec9644
commit
5e9d1586a5
|
|
@ -1,3 +1,16 @@
|
||||||
|
/******************************************************************************
|
||||||
|
* Copyright (C) 2008 Low Heng Sin *
|
||||||
|
* Copyright (C) 2008 Idalica Corporation *
|
||||||
|
* This program is free software; you can redistribute it and/or modify it *
|
||||||
|
* under the terms version 2 of the GNU General Public License as published *
|
||||||
|
* by the Free Software Foundation. This program is distributed in the hope *
|
||||||
|
* that it will be useful, but WITHOUT ANY WARRANTY; without even the implied *
|
||||||
|
* warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
||||||
|
* See the GNU General Public License for more details. *
|
||||||
|
* You should have received a copy of the GNU General Public License along *
|
||||||
|
* with this program; if not, write to the Free Software Foundation, Inc., *
|
||||||
|
* 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. *
|
||||||
|
*****************************************************************************/
|
||||||
package org.adempiere.webui.apps.graph;
|
package org.adempiere.webui.apps.graph;
|
||||||
|
|
||||||
import java.awt.Color;
|
import java.awt.Color;
|
||||||
|
|
@ -47,14 +60,13 @@ import org.zkoss.zul.Imagemap;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Bar Graph
|
* Bar Graph
|
||||||
*
|
*
|
||||||
* @author Jorg Janke
|
* @author hengsin
|
||||||
* @version $Id: BarGraph.java,v 1.2 2006/07/30 00:51:28 jjanke Exp $
|
|
||||||
*/
|
*/
|
||||||
public class WBarGraph extends Panel
|
public class WBarGraph extends Panel
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
private static final long serialVersionUID = -975989183542113080L;
|
private static final long serialVersionUID = -975989183542113080L;
|
||||||
|
|
||||||
|
|
@ -77,18 +89,13 @@ public class WBarGraph extends Panel
|
||||||
m_Y_AxisLabel = goal.getName();
|
m_Y_AxisLabel = goal.getName();
|
||||||
m_X_AxisLabel = goal.getXAxisText();
|
m_X_AxisLabel = goal.getXAxisText();
|
||||||
loadData();
|
loadData();
|
||||||
//addComponentListener(this);
|
|
||||||
} // BarGraph
|
} // BarGraph
|
||||||
|
|
||||||
/** The Goal */
|
/** The Goal */
|
||||||
private MGoal m_goal = null;
|
private MGoal m_goal = null;
|
||||||
/** Graph Size */
|
|
||||||
//private Dimension m_size = null;
|
|
||||||
/** Zero/Zero Coordibate point */
|
/** Zero/Zero Coordibate point */
|
||||||
private Point m_point0_0 = null;
|
private Point m_point0_0 = null;
|
||||||
/** Layout */
|
|
||||||
// private BarGraphLayout m_layout = new BarGraphLayout(this);
|
|
||||||
|
|
||||||
/** Logger */
|
/** Logger */
|
||||||
private static CLogger log = CLogger.getCLogger (WBarGraph.class);
|
private static CLogger log = CLogger.getCLogger (WBarGraph.class);
|
||||||
|
|
||||||
|
|
@ -96,23 +103,18 @@ public class WBarGraph extends Panel
|
||||||
private String m_X_AxisLabel = "X Axis";
|
private String m_X_AxisLabel = "X Axis";
|
||||||
/** Y Axis Label */
|
/** Y Axis Label */
|
||||||
private String m_Y_AxisLabel = "Y Axis";
|
private String m_Y_AxisLabel = "Y Axis";
|
||||||
/** Y Axis Max */
|
|
||||||
// private double m_Y_Max = 0;
|
|
||||||
/** Y Axis Target Line */
|
|
||||||
// private double m_Y_Target = 0;
|
|
||||||
/** Y Axis Target Line Label */
|
/** Y Axis Target Line Label */
|
||||||
private String m_Y_TargetLabel = null;
|
private String m_Y_TargetLabel = null;
|
||||||
// private static Dimension paneldimension = new Dimension(180, 150);
|
|
||||||
|
|
||||||
final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
|
final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load Performance Data
|
* Load Performance Data
|
||||||
*/
|
*/
|
||||||
ArrayList<BarGraphColumn> list = new ArrayList<BarGraphColumn>();
|
ArrayList<BarGraphColumn> list = new ArrayList<BarGraphColumn>();
|
||||||
|
|
||||||
private void loadData()
|
private void loadData()
|
||||||
{
|
{
|
||||||
// Calculated
|
// Calculated
|
||||||
MMeasure measure = m_goal.getMeasure();
|
MMeasure measure = m_goal.getMeasure();
|
||||||
if (measure == null)
|
if (measure == null)
|
||||||
|
|
@ -123,8 +125,8 @@ public class WBarGraph extends Panel
|
||||||
if (MMeasure.MEASURETYPE_Calculated.equals(measure.getMeasureType()))
|
if (MMeasure.MEASURETYPE_Calculated.equals(measure.getMeasureType()))
|
||||||
{
|
{
|
||||||
MMeasureCalc mc = MMeasureCalc.get(Env.getCtx(), measure.getPA_MeasureCalc_ID());
|
MMeasureCalc mc = MMeasureCalc.get(Env.getCtx(), measure.getPA_MeasureCalc_ID());
|
||||||
String sql = mc.getSqlBarChart(m_goal.getRestrictions(false),
|
String sql = mc.getSqlBarChart(m_goal.getRestrictions(false),
|
||||||
m_goal.getMeasureDisplay(), null,
|
m_goal.getMeasureDisplay(), null,
|
||||||
MRole.getDefault()); // logged in role
|
MRole.getDefault()); // logged in role
|
||||||
PreparedStatement pstmt = null;
|
PreparedStatement pstmt = null;
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
|
|
@ -138,10 +140,10 @@ public class WBarGraph extends Panel
|
||||||
BigDecimal data = rs.getBigDecimal(1);
|
BigDecimal data = rs.getBigDecimal(1);
|
||||||
Timestamp date = rs.getTimestamp(2);
|
Timestamp date = rs.getTimestamp(2);
|
||||||
BarGraphColumn bgc = new BarGraphColumn(mc, data);
|
BarGraphColumn bgc = new BarGraphColumn(mc, data);
|
||||||
bgc.setLabel(date, m_goal.getMeasureDisplay()); //TODO copy order-loop to other measures
|
bgc.setLabel(date, m_goal.getMeasureDisplay()); //TODO copy order-loop to other measures
|
||||||
int pos=0;
|
int pos=0;
|
||||||
for (int i = 0; i < dataList.size(); i++)
|
for (int i = 0; i < dataList.size(); i++)
|
||||||
if (dataList.get(i).before(date)) pos++;
|
if (dataList.get(i).before(date)) pos++;
|
||||||
dataList.add(date); // list of dates
|
dataList.add(date); // list of dates
|
||||||
list.add(pos, bgc);
|
list.add(pos, bgc);
|
||||||
}
|
}
|
||||||
|
|
@ -168,7 +170,7 @@ public class WBarGraph extends Panel
|
||||||
list.add(bgc);
|
list.add(bgc);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else // MMeasure.MEASUREDATATYPE_QtyAmountInTime
|
else // MMeasure.MEASUREDATATYPE_QtyAmountInTime
|
||||||
{
|
{
|
||||||
String MeasureDisplay = m_goal.getMeasureDisplay();
|
String MeasureDisplay = m_goal.getMeasureDisplay();
|
||||||
String trunc = "D";
|
String trunc = "D";
|
||||||
|
|
@ -214,13 +216,13 @@ public class WBarGraph extends Panel
|
||||||
}
|
}
|
||||||
} // Achievement in time
|
} // Achievement in time
|
||||||
} // Achievement
|
} // Achievement
|
||||||
|
|
||||||
// Request
|
// Request
|
||||||
else if (MMeasure.MEASURETYPE_Request.equals(measure.getMeasureType()))
|
else if (MMeasure.MEASURETYPE_Request.equals(measure.getMeasureType()))
|
||||||
{
|
{
|
||||||
MRequestType rt = MRequestType.get(Env.getCtx(), measure.getR_RequestType_ID());
|
MRequestType rt = MRequestType.get(Env.getCtx(), measure.getR_RequestType_ID());
|
||||||
String sql = rt.getSqlBarChart(m_goal.getRestrictions(false),
|
String sql = rt.getSqlBarChart(m_goal.getRestrictions(false),
|
||||||
m_goal.getMeasureDisplay(), measure.getMeasureDataType(),
|
m_goal.getMeasureDisplay(), measure.getMeasureDataType(),
|
||||||
null, MRole.getDefault()); // logged in role
|
null, MRole.getDefault()); // logged in role
|
||||||
PreparedStatement pstmt = null;
|
PreparedStatement pstmt = null;
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
|
|
@ -256,13 +258,13 @@ public class WBarGraph extends Panel
|
||||||
rs = null; pstmt = null;
|
rs = null; pstmt = null;
|
||||||
}
|
}
|
||||||
} // Request
|
} // Request
|
||||||
|
|
||||||
// Project
|
// Project
|
||||||
else if (MMeasure.MEASURETYPE_Project.equals(measure.getMeasureType()))
|
else if (MMeasure.MEASURETYPE_Project.equals(measure.getMeasureType()))
|
||||||
{
|
{
|
||||||
MProjectType pt = MProjectType.get(Env.getCtx(), measure.getC_ProjectType_ID());
|
MProjectType pt = MProjectType.get(Env.getCtx(), measure.getC_ProjectType_ID());
|
||||||
String sql = pt.getSqlBarChart(m_goal.getRestrictions(false),
|
String sql = pt.getSqlBarChart(m_goal.getRestrictions(false),
|
||||||
m_goal.getMeasureDisplay(), measure.getMeasureDataType(),
|
m_goal.getMeasureDisplay(), measure.getMeasureDataType(),
|
||||||
null, MRole.getDefault()); // logged in role
|
null, MRole.getDefault()); // logged in role
|
||||||
PreparedStatement pstmt = null;
|
PreparedStatement pstmt = null;
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
|
|
@ -290,19 +292,13 @@ public class WBarGraph extends Panel
|
||||||
rs = null; pstmt = null;
|
rs = null; pstmt = null;
|
||||||
}
|
}
|
||||||
} // Project
|
} // Project
|
||||||
|
|
||||||
// Add last 20
|
// Add last 20
|
||||||
int startValue = 0;
|
int startValue = 0;
|
||||||
//if (list.size() > 20) //TODO CHECK
|
|
||||||
// startValue = list.size()-20;
|
|
||||||
/*
|
|
||||||
for (int i = startValue; i < list.size(); i++)
|
|
||||||
add (list.get(i));
|
|
||||||
*/
|
|
||||||
for (int i = startValue; i < list.size(); i++){
|
for (int i = startValue; i < list.size(); i++){
|
||||||
dataset.addValue(list.get(i).getValue(), list.get(i).getLabel(), list.get(i).getLabel());
|
dataset.addValue(list.get(i).getValue(), list.get(i).getLabel(), list.get(i).getLabel());
|
||||||
}
|
}
|
||||||
|
|
||||||
// create the chart...
|
// create the chart...
|
||||||
final JFreeChart chart = ChartFactory.createBarChart(
|
final JFreeChart chart = ChartFactory.createBarChart(
|
||||||
measure.getName(), // chart title
|
measure.getName(), // chart title
|
||||||
|
|
@ -317,34 +313,34 @@ public class WBarGraph extends Panel
|
||||||
|
|
||||||
CategoryPlot plot = chart.getCategoryPlot();
|
CategoryPlot plot = chart.getCategoryPlot();
|
||||||
//plot.setBackgroundPaint(Color.lightGray); //GraphUtil.getForeground(getBackground())
|
//plot.setBackgroundPaint(Color.lightGray); //GraphUtil.getForeground(getBackground())
|
||||||
BarRenderer renderer = (BarRenderer) plot.getRenderer();
|
BarRenderer renderer = (BarRenderer) plot.getRenderer();
|
||||||
chart.getCategoryPlot().setRenderer(renderer);
|
chart.getCategoryPlot().setRenderer(renderer);
|
||||||
renderer.setSeriesPaint(0, new Color(92/255f, 178/255f, 232/255f));
|
renderer.setSeriesPaint(0, new Color(92/255f, 178/255f, 232/255f));
|
||||||
renderer.setSeriesPaint(1, new Color(56/255f, 97/255f, 119/255f));
|
renderer.setSeriesPaint(1, new Color(56/255f, 97/255f, 119/255f));
|
||||||
renderer.setSeriesPaint(2, new Color(242/255f, 70/255f, 78/255f));
|
renderer.setSeriesPaint(2, new Color(242/255f, 70/255f, 78/255f));
|
||||||
renderer.setSeriesPaint(3, Color.orange);
|
renderer.setSeriesPaint(3, Color.orange);
|
||||||
renderer.setSeriesPaint(4, new Color(147/255f, 196/255f, 51/255f));
|
renderer.setSeriesPaint(4, new Color(147/255f, 196/255f, 51/255f));
|
||||||
renderer.setSeriesPaint(5, new Color(210/255f, 247/255f, 91/255f));
|
renderer.setSeriesPaint(5, new Color(210/255f, 247/255f, 91/255f));
|
||||||
renderer.setSeriesPaint(6, new Color(129/255f, 235/255f, 249/255f));
|
renderer.setSeriesPaint(6, new Color(129/255f, 235/255f, 249/255f));
|
||||||
renderer.setSeriesPaint(7, new Color(60/255f, 84/255f, 8/255f));
|
renderer.setSeriesPaint(7, new Color(60/255f, 84/255f, 8/255f));
|
||||||
renderer.setSeriesPaint(8, new Color(0.8f, 0.8f, 0.8f));
|
renderer.setSeriesPaint(8, new Color(0.8f, 0.8f, 0.8f));
|
||||||
|
|
||||||
ChartRenderingInfo info = new ChartRenderingInfo();
|
ChartRenderingInfo info = new ChartRenderingInfo();
|
||||||
BufferedImage bi = chart.createBufferedImage(700, 500, BufferedImage.TRANSLUCENT, info);
|
BufferedImage bi = chart.createBufferedImage(700, 500, BufferedImage.TRANSLUCENT, info);
|
||||||
try {
|
try {
|
||||||
byte[] bytes = EncoderUtil.encode(bi, ImageFormat.PNG, true);
|
byte[] bytes = EncoderUtil.encode(bi, ImageFormat.PNG, true);
|
||||||
|
|
||||||
AImage image = new AImage("", bytes);
|
AImage image = new AImage("", bytes);
|
||||||
Imagemap myImage = new Imagemap();
|
Imagemap myImage = new Imagemap();
|
||||||
|
|
||||||
myImage.setContent(image);
|
myImage.setContent(image);
|
||||||
appendChild(myImage);
|
appendChild(myImage);
|
||||||
|
|
||||||
int count = 0;
|
int count = 0;
|
||||||
for(Iterator it = info.getEntityCollection().getEntities().iterator(); it.hasNext(); )
|
for(Iterator<?> it = info.getEntityCollection().getEntities().iterator(); it.hasNext(); )
|
||||||
{
|
{
|
||||||
ChartEntity ce = ( ChartEntity ) it.next();
|
ChartEntity ce = ( ChartEntity ) it.next();
|
||||||
|
|
||||||
String tooltip = ce.getToolTipText();
|
String tooltip = ce.getToolTipText();
|
||||||
if(tooltip == null) continue;
|
if(tooltip == null) continue;
|
||||||
|
|
||||||
|
|
@ -356,10 +352,10 @@ public class WBarGraph extends Panel
|
||||||
area.setId("WBG_"+tooltip);
|
area.setId("WBG_"+tooltip);
|
||||||
count++;
|
count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
myImage.addEventListener(Events.ON_CLICK, new EventListener()
|
myImage.addEventListener(Events.ON_CLICK, new EventListener()
|
||||||
{
|
{
|
||||||
public void onEvent(Event event) throws Exception
|
public void onEvent(Event event) throws Exception
|
||||||
{
|
{
|
||||||
MouseEvent me = (MouseEvent) event;
|
MouseEvent me = (MouseEvent) event;
|
||||||
String areaId = me.getArea();
|
String areaId = me.getArea();
|
||||||
|
|
@ -377,22 +373,22 @@ public class WBarGraph extends Panel
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
catch (Exception e) {
|
catch (Exception e) {
|
||||||
log.log (Level.SEVERE, "", e);
|
log.log (Level.SEVERE, "", e);
|
||||||
}
|
}
|
||||||
} // loadData
|
} // loadData
|
||||||
/**
|
/**
|
||||||
* Get Point 0_0
|
* Get Point 0_0
|
||||||
*
|
*
|
||||||
* @return point
|
* @return point
|
||||||
*/
|
*/
|
||||||
public Point getPoint0_0()
|
public Point getPoint0_0()
|
||||||
{
|
{
|
||||||
return m_point0_0;
|
return m_point0_0;
|
||||||
} // getPoint0_0
|
} // getPoint0_0
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Returns the x_AxisLabel.
|
* @return Returns the x_AxisLabel.
|
||||||
*/
|
*/
|
||||||
|
|
@ -400,7 +396,7 @@ public class WBarGraph extends Panel
|
||||||
{
|
{
|
||||||
return m_X_AxisLabel;
|
return m_X_AxisLabel;
|
||||||
} // getX_AxisLabel
|
} // getX_AxisLabel
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param axisLabel The x_AxisLabel to set.
|
* @param axisLabel The x_AxisLabel to set.
|
||||||
*/
|
*/
|
||||||
|
|
@ -416,7 +412,7 @@ public class WBarGraph extends Panel
|
||||||
{
|
{
|
||||||
return m_Y_AxisLabel;
|
return m_Y_AxisLabel;
|
||||||
} // getY_AxisLabel
|
} // getY_AxisLabel
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param axisLabel The y_AxisLabel to set.
|
* @param axisLabel The y_AxisLabel to set.
|
||||||
*/
|
*/
|
||||||
|
|
@ -424,7 +420,7 @@ public class WBarGraph extends Panel
|
||||||
{
|
{
|
||||||
m_Y_AxisLabel = axisLabel;
|
m_Y_AxisLabel = axisLabel;
|
||||||
} // setY_AxisLabel
|
} // setY_AxisLabel
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Returns the y_TargetLabel.
|
* @return Returns the y_TargetLabel.
|
||||||
*/
|
*/
|
||||||
|
|
@ -432,7 +428,7 @@ public class WBarGraph extends Panel
|
||||||
{
|
{
|
||||||
return m_Y_TargetLabel;
|
return m_Y_TargetLabel;
|
||||||
} // getY_TargetLabel
|
} // getY_TargetLabel
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param targetLabel The y_TargetLabel to set.
|
* @param targetLabel The y_TargetLabel to set.
|
||||||
*/
|
*/
|
||||||
|
|
@ -441,8 +437,8 @@ public class WBarGraph extends Panel
|
||||||
m_Y_TargetLabel = targetLabel;
|
m_Y_TargetLabel = targetLabel;
|
||||||
// m_Y_Target = target;
|
// m_Y_Target = target;
|
||||||
} // setY_TargetLabel
|
} // setY_TargetLabel
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Add Column
|
* Add Column
|
||||||
* @param column column
|
* @param column column
|
||||||
|
|
@ -450,16 +446,16 @@ public class WBarGraph extends Panel
|
||||||
public void add (BarGraphColumn column)
|
public void add (BarGraphColumn column)
|
||||||
{
|
{
|
||||||
// super.add (column, "column");
|
// super.add (column, "column");
|
||||||
//column.addActionListener(this);
|
//column.addActionListener(this);
|
||||||
} // add
|
} // add
|
||||||
|
|
||||||
|
|
||||||
/**************************************************************************
|
/**************************************************************************
|
||||||
* Paint Component
|
* Paint Component
|
||||||
* @param g graphics
|
* @param g graphics
|
||||||
*/
|
*/
|
||||||
|
|
||||||
public void chartMouseClicked(int index)
|
public void chartMouseClicked(int index)
|
||||||
{
|
{
|
||||||
BarGraphColumn bgc = list.get(index);
|
BarGraphColumn bgc = list.get(index);
|
||||||
if (null == bgc)
|
if (null == bgc)
|
||||||
|
|
@ -470,13 +466,13 @@ public class WBarGraph extends Panel
|
||||||
{
|
{
|
||||||
MAchievement a = bgc.getAchievement();
|
MAchievement a = bgc.getAchievement();
|
||||||
query = MQuery.getEqualQuery("PA_Measure_ID", a.getPA_Measure_ID());
|
query = MQuery.getEqualQuery("PA_Measure_ID", a.getPA_Measure_ID());
|
||||||
}
|
}
|
||||||
else if (bgc.getGoal() != null) // Multiple Achievements
|
else if (bgc.getGoal() != null) // Multiple Achievements
|
||||||
{
|
{
|
||||||
MGoal goal = bgc.getGoal();
|
MGoal goal = bgc.getGoal();
|
||||||
query = MQuery.getEqualQuery("PA_Measure_ID", goal
|
query = MQuery.getEqualQuery("PA_Measure_ID", goal
|
||||||
.getPA_Measure_ID());
|
.getPA_Measure_ID());
|
||||||
}
|
}
|
||||||
else if (bgc.getMeasureCalc() != null) // Document
|
else if (bgc.getMeasureCalc() != null) // Document
|
||||||
{
|
{
|
||||||
MMeasureCalc mc = bgc.getMeasureCalc();
|
MMeasureCalc mc = bgc.getMeasureCalc();
|
||||||
|
|
@ -484,14 +480,14 @@ public class WBarGraph extends Panel
|
||||||
.getMeasureDisplay(), bgc.getDate(), MRole.getDefault()); // logged
|
.getMeasureDisplay(), bgc.getDate(), MRole.getDefault()); // logged
|
||||||
// in
|
// in
|
||||||
// role
|
// role
|
||||||
}
|
}
|
||||||
else if (bgc.getProjectType() != null) // Document
|
else if (bgc.getProjectType() != null) // Document
|
||||||
{
|
{
|
||||||
MProjectType pt = bgc.getProjectType();
|
MProjectType pt = bgc.getProjectType();
|
||||||
query = pt.getQuery(m_goal.getRestrictions(false), bgc
|
query = pt.getQuery(m_goal.getRestrictions(false), bgc
|
||||||
.getMeasureDisplay(), bgc.getDate(), bgc.getID(), MRole
|
.getMeasureDisplay(), bgc.getDate(), bgc.getID(), MRole
|
||||||
.getDefault()); // logged in role
|
.getDefault()); // logged in role
|
||||||
}
|
}
|
||||||
else if (bgc.getRequestType() != null) // Document
|
else if (bgc.getRequestType() != null) // Document
|
||||||
{
|
{
|
||||||
MRequestType rt = bgc.getRequestType();
|
MRequestType rt = bgc.getRequestType();
|
||||||
|
|
@ -504,10 +500,10 @@ public class WBarGraph extends Panel
|
||||||
else
|
else
|
||||||
log.warning("Nothing to zoom to - " + bgc);
|
log.warning("Nothing to zoom to - " + bgc);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void chartMouseMoved(ChartMouseEvent event) {}
|
public void chartMouseMoved(ChartMouseEvent event) {}
|
||||||
|
|
||||||
public BarGraphColumn[] getBarGraphColumnList()
|
public BarGraphColumn[] getBarGraphColumnList()
|
||||||
{
|
{
|
||||||
BarGraphColumn[] array = new BarGraphColumn[list.size()];
|
BarGraphColumn[] array = new BarGraphColumn[list.size()];
|
||||||
for (int i = 0; i < list.size(); i++){
|
for (int i = 0; i < list.size(); i++){
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue