|
Á¦ ¸ñ |
JVIEW Â÷Æ® ±â´É ¹®ÀÇ µå¸³´Ï´Ù.. |
|
ÀÛ¼ºÀÚ |
À¯±¤¿ë |
ÀÛ¼ºÀÏ |
2014-01-03 |
Á¶È¸¼ö |
1166 ȸ |
|
÷ºÎÆÄÀÏ |
¹®ÀÇ »ùÇÃ.jpg(128781 Byte)
|
|
public void setIntervalX(String chartName, String itemName, double fromValue, double toValue, Color color) { PosChart chart = new PosChart(); for(int i =0;i { chart = (PosChart)((JPanel)getPanel().getComponent(i)).getComponent(0); if(chartName.equals(chart.getName())) { break; } } IlvDataWindow w = null; double yDataMin = chart.getYAxis(0).getDataMin() - Math.abs(chart.getYAxis(0).getDataMin() * 0.4); double yDataMax = chart.getYAxis(0).getDataMax() + (chart.getYAxis(0).getDataMax() * 0.45); w = new IlvDataWindow(fromValue, toValue, yDataMin, yDataMax); // IlvDataInterval inter = new IlvDataInterval(fromValue, toValue); IlvDataIndicator weInd = new IlvDataIndicator(0 , w, itemName); /** Y Value Base*/
weInd.setStyle(new IlvStyle(Color.white, color )); /**IlvColor.skyBlue*/ chart.addDecoration(weInd); setHighlight(chart); }
À§ ¸Þ¼Òµå¸¦ »ç¿ëÇÏ¿© Â÷Æ®³»¿¡ ±¸ºÐµÈ ¿µ¿ªÀ» Ç¥½ÃÇÏ°í ¿µ¿ª¾È¿¡ ¿µ¿ªÀ» ¾Ë¼öÀÖ´Â ÅØ½ºÆ®¸¦ Ç¥½ÃÇϰí Àִµ¥¿ä.. ÇöÀç´Â ÅØ½ºÆ®°¡ Â÷Æ® ¿µ¿ª Á¤ Áß¾Ó¿¡ Ç¥½ÃµÇ´Âµ¥.. ¿µ¿ª ¸Ç ¾Æ·¡·Î ³»¸±·Á¸é ¾î¶»°Ô ÇØ¾ß µÇ³ª¿ä? ºü¸¥ ´äº¯ ÁÖ½Ã¸é °í¸¿°Ú½À´Ï´Ù.. ¹®ÀÇ»ùÇà À̹ÌÁö ÷ºÎÇÕ´Ï´Ù.. |
|
|
|