whyclj
2021-01-05 64aba412c2b739d67795b14a3cae069d311697f9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
package com.teechart;
 
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;
import java.awt.event.MouseMotionListener;
import java.util.ArrayList;
 
import javax.swing.JMenuItem;
import javax.swing.JPopupMenu;
import com.steema.teechart.TChart;
import com.steema.teechart.drawing.Color;
import com.steema.teechart.drawing.DashStyle;
import com.steema.teechart.events.TextResolver;
import com.steema.teechart.styles.Bar;
import com.steema.teechart.styles.Line;
import com.steema.teechart.styles.MarksStyle;
import com.steema.teechart.tools.MarksTip;
import com.steema.teechart.tools.MarksTipMouseAction;
 
/********************************* Tee Bar Chart ************************************************/
public class TBarChart extends TChart
{
    public static final long serialVersionUID = 1L;
    public static final int Bar_Type_MonVol = 0;
    public static final int Bar_Type_MonTmp = 1;
    public static final int Bar_Type_MonRes = 2;
    public static final int Bar_Type_ConnRes = 3;
    public static final int Bar_Type_MonSer = 4;
    public static final int Bar_Type_MonSerPercent = 5;
    public static final int Bar_Type_MonCapVol = 6;
    public static final int Bar_Type_MonRealCap = 7;
    public static final int Bar_Type_MonRestCap = 8;
    public static final int Bar_Type_MonCapPercent = 9;
    
    private static final Color COLOR_MAX = Color.GREEN;
    private static final Color COLOR_MIN = Color.RED;
    private static final Color COLOR_AVG = Color.GOLD;
    private static final Color COLOR_HIGH = Color.GREEN;
    private static final Color COLOR_LOW = Color.RED;
    
    public Bar bar_ser;
    public double[] bar_values;
    private ArrayList<Color> m_colorlist = new ArrayList<Color>();
    private double bar_leftAxMax = 0;
    private int bar_value_count = 0;
    
    private Line line_ser_avg;
    private Line line_ser_low;
    private Line line_ser_high;
    private MarksTip tooltip1;
    
    private int mBarType = Bar_Type_MonVol;
    private int m_UI_GridViewIndex = 0;
    
    public double max = 0;
    public double min = 900000;
    public double avg_val = 0;
    public double low_val = 0;
    public double sublow_val = 0;
    public int lowcount = 0;
    public float low_percent = 0;
    
    public TBarChart(int bar_type)
    {
        bar_ser = new Bar();
        bar_ser.getMarks().setStyle(MarksStyle.VALUE);
        bar_ser.getMarks().setVisible(false);
        
        this.setBarValueFormat(bar_type);
        this.addSeries(bar_ser);
        
        this.addMouseListener(new MouseListener(){
            
            @Override
            public void mouseClicked(MouseEvent arg0) {
                if(arg0.getButton() == MouseEvent.BUTTON3)
                {
                    JPopupMenu popupMenu = new JPopupMenu();
                    JMenuItem tableItem_restorezomm = new JMenuItem("»¹Ô­Ëõ·Å״̬");
                    JMenuItem tableItem_showbar_label = new JMenuItem("ÏÔʾ/Òþ²ØÊýÖµ");
                    
                    ActionListener act_Listener = new ActionListener(){
                        @Override
                        public void actionPerformed(ActionEvent arg0) {
                            if(arg0.getSource() == tableItem_restorezomm) {
                                restoreZoom();
                            } else if(arg0.getSource() == tableItem_showbar_label) {
                                bar_ser.getMarks().setVisible(!bar_ser.getMarks().getVisible());
                            }
                        }
                    };
                    
                    tableItem_restorezomm.addActionListener(act_Listener);
                    tableItem_showbar_label.addActionListener(act_Listener);
                    popupMenu.add(tableItem_restorezomm);
                    popupMenu.add(tableItem_showbar_label);
                    popupMenu.show(arg0.getComponent(), arg0.getX(), arg0.getY());
                }
            }
 
            @Override
            public void mouseEntered(MouseEvent arg0) {
                // TODO Auto-generated method stub
                //arg0.getX();
                
            }
 
            @Override
            public void mouseExited(MouseEvent arg0) {
                // TODO Auto-generated method stub
                
            }
 
            @Override
            public void mousePressed(MouseEvent arg0) {
                // TODO Auto-generated method stub
                
            }
 
            @Override
            public void mouseReleased(MouseEvent arg0) {
                // TODO Auto-generated method stub
                
            }
        });
        
        line_ser_avg = new Line();
        line_ser_avg.getLinePen().setStyle(DashStyle.DOT);
        line_ser_avg.setColor(COLOR_AVG);
        this.addSeries(line_ser_avg);
        
        line_ser_high = new Line();
        line_ser_high.getLinePen().setStyle(DashStyle.DOT);
        line_ser_high.setColor(COLOR_HIGH);
        this.addSeries(line_ser_high);
        
        line_ser_low = new Line();
        line_ser_low.getLinePen().setStyle(DashStyle.DOT);
        line_ser_low.setColor(COLOR_LOW);
        this.addSeries(line_ser_low);
        
        this.getChart().getTitle().setText("");
        this.getChart().getTitle().getFont().setColor(Color.GRAY);
        this.getLegend().setVisible(false);
        this.getAspect().setView3D(false);
        this.getPanel().setMarginLeft(0);
        this.getPanel().setMarginRight(1);
        this.getPanel().setMarginTop(1.5);
        this.getPanel().setMarginBottom(2);
        this.getPanel().setColor(Color.BLACK);
        this.getAxes().getLeft().getLabels().getFont().setColor(Color.GRAY);
        this.getAxes().getLeft().getGrid().setColor(Color.fromArgb(50, 50, 50));
        this.getAxes().getLeft().getAxisPen().setColor(Color.GRAY);
        this.getAxes().getBottom().getAxisPen().setColor(Color.GRAY);
        this.getAxes().getBottom().getLabels().getFont().setColor(Color.GRAY);
        this.getAxes().getBottom().getGrid().setVisible(false);
        
        tooltip1 = new MarksTip(this.getChart());
        tooltip1.setMouseDelay(50);
        tooltip1.setMouseAction(MarksTipMouseAction.MOVE);
        tooltip1.setStyle(MarksStyle.LABELVALUE);
        tooltip1.setToolTipResolver(new TextResolver(){
            @Override
            public String getText(Object arg0, String arg1) {
                // TODO Auto-generated method stub
                return arg1.replace(" ", "    ");
            }
        });
        tooltip1.addMouseMotionListener(new MouseMotionListener(){
 
            @Override
            public void mouseDragged(MouseEvent arg0) {
            }
 
            @Override
            public void mouseMoved(MouseEvent arg0) {
                try {
                    if(bar_ser.getYValues().count > 0)
                    {
                        int index = Integer.parseInt(String.format("%1.0f", bar_ser.xScreenToValue(arg0.getX()))) - 1;
                        float bvalue = (float) bar_ser.yScreenToValue(arg0.getY());
                        for(int n=0; n<m_colorlist.size(); n++)
                            bar_ser.getColors().setColor(n, m_colorlist.get(n));
                        
                        if((index >= 0) && (index < bar_ser.getColors().getCount())
                                && (Math.abs(bvalue) <= Math.abs(bar_ser.getYValues().getValue(index))))
                        {
                            bar_ser.getColors().setColor(index, Color.CYAN);
                            String str = (String) (bar_ser.getLabels().get(index));
                            Integer.parseInt(str.substring(1, str.length()).trim());
                        }
                        
                        bar_ser.repaint();
                    }
                } catch(Exception e) {
                    System.out.println(e.getMessage());
                }
            }
        });
    }
    
    public void setGridViewIndex(int index) {
        m_UI_GridViewIndex = index;
    }
    public int getGridViewIndex() {
        return m_UI_GridViewIndex;
    }
    
    public int getBarValueCount()
    {
        return bar_value_count;
    }
    /*
    public void setShowLowBattOnly(boolean sh)
    {
        show_lowbatt_only = sh;
        if(false == show_lowbatt_only)
        {
            restoreZoom();
        }
    }
    */
    
    public void setBarValueFormat(int bar_type)
    {
        mBarType = bar_type;
        switch(mBarType)
        {
        case Bar_Type_MonVol: bar_ser.setValueFormat("#0.000V"); break;
        case Bar_Type_MonTmp: bar_ser.setValueFormat("#0.0¡ãC"); break;
        case Bar_Type_MonRes: bar_ser.setValueFormat("#0.000m¦¸"); break;
        case Bar_Type_MonSer: bar_ser.setValueFormat("#"); break;
        case Bar_Type_MonSerPercent: bar_ser.setValueFormat("#0.0%"); break;
        case Bar_Type_ConnRes: bar_ser.setValueFormat("#0.000m¦¸"); break;
        case Bar_Type_MonCapVol: bar_ser.setValueFormat("#0.000V"); break;
        case Bar_Type_MonRealCap: bar_ser.setValueFormat("#AH"); break;
        case Bar_Type_MonRestCap: bar_ser.setValueFormat("#AH"); break;
        case Bar_Type_MonCapPercent: bar_ser.setValueFormat("#%"); break;
        }
    }
    
    public void restoreZoom()
    {
        this.getZoom().undo();
        this.getAxes().getBottom().setMinMax(0.2, bar_value_count+0.6);
    }
    
    public void clearSerialData()
    {
        this.getChart().getTitle().setText("");
        bar_ser.clear();
        m_colorlist.clear();
        line_ser_avg.clear();
        line_ser_high.clear();
        line_ser_low.clear();
        //this.getChart().getAxes().getBottom().setMinMax(0, 0);
        this.getChart().getAxes().getLeft().setMinMax(0, 0);
    }
    
    private String getChartTitleString(String value_title, String value_formate)
    {
        float param = 1;
        if(value_formate.contains("%%")) {
            param = 100;
        }
        
        String str = String.format(value_title
                + ": MAX = " + value_formate
                + "; MIN = " + value_formate
                + "; AVG = " + value_formate
                + "; \n\r"
                + "LOW = " + value_formate
                + "; LC = %d"
                + "; LP = %1.1f%%", 
                max*param, min*param, avg_val*param, sublow_val*param, lowcount, low_percent);
        return str;
    }
    
    public void updateChartData(int bar_type, double val[], int d_count)
    {
        setBarValueFormat(bar_type);
        
        bar_values = val;
        boolean manulbottomAx = false;
        
        clearSerialData();
        
        if(d_count <= 0)
            return;
        
        if(this.getSeriesCount() != 3)
        {
            this.removeAllSeries();
            this.addSeries(bar_ser);
            this.addSeries(line_ser_avg);
            this.addSeries(line_ser_high);
            this.addSeries(line_ser_low);
        }
        
        max = 0;
        min = 900000;
        avg_val = 0;
        sublow_val = 0;
        low_val = 0;
        lowcount = 0;
        low_percent = 0;
        
        if(bar_value_count != d_count)
        {
            bar_value_count = d_count;
            manulbottomAx = true;
            m_colorlist.clear();
        }
        
        for(int n=0; n<d_count; n++)
        {
            avg_val += bar_values[n];
            if(max < bar_values[n]) {max = bar_values[n];}
            if(min > bar_values[n]) {min = bar_values[n];}
        }
        avg_val /= d_count;
        
        line_ser_avg.add(0, avg_val, "");
        line_ser_high.add(0, sublow_val, "");
        line_ser_low.add(0, low_val, "");
        int chart_value_show_count = 0;
        
        for(int n=0; n<d_count; n++)
        {
            Color cl = Color.fromArgb(100, 100, 100);
            //if(true == m_UI.m_CFG.showHighLightBar)
            //    cl = Color.BLUE;
            
            if((Bar_Type_MonRes==bar_type)||(Bar_Type_ConnRes==bar_type)||(Bar_Type_MonTmp==bar_type)) {
                /*if(bar_values[n] >= sublow_val) {cl = COLOR_SUBLOW; lowcount++;}
                if(bar_values[n] >= low_val) {cl = COLOR_LOW;}*/
                if(bar_values[n] >= max) {cl = COLOR_MIN;}
                if(bar_values[n] <= min) {cl = COLOR_MAX;}
            } else {/*
                if(bar_values[n] <= sublow_val) {cl = COLOR_SUBLOW; lowcount++;}
                if(bar_values[n] <= low_val) {cl = COLOR_LOW;}*/
                if(bar_values[n] >= max) {cl = COLOR_MAX;}
                if(bar_values[n] <= min) {cl = COLOR_MIN;}
            }
            
            bar_ser.add(chart_value_show_count+1, bar_values[n], "#" + String.valueOf(n+1), cl);
            m_colorlist.add(cl);
            /*
            line_ser_avg.add(chart_value_show_count+1, avg_val, "#" + String.valueOf(n+1));
            line_ser_high.add(chart_value_show_count+1, max, "#" + String.valueOf(n+1));
            line_ser_low.add(chart_value_show_count+1, min, "#" + String.valueOf(n+1));
            */
            chart_value_show_count++;
        }
        /*
        line_ser_avg.add(chart_value_show_count+0.6, avg_val, "");
        line_ser_sublow.add(chart_value_show_count+0.6, sublow_val, "");
        line_ser_low.add(chart_value_show_count+0.6, low_val, "");
        */
        low_percent = ((float)lowcount)*100 / (float)d_count;
        
        String chart_tile_str = getChartTitleString("MonVol", "%1.3fV");
        String left_axes_format = "#0.00V";
        
        float ax_left_pm_min = (float) 0.9;
        float ax_left_pm_max = (float) 1.08;
        
        if(Bar_Type_MonRealCap == mBarType) {
            chart_tile_str = getChartTitleString("RealCap", "%1.0fAH");
            left_axes_format = "#AH";
        }
        else if(Bar_Type_MonRestCap == mBarType) {
            chart_tile_str = getChartTitleString("RestCap", "%1.0fAH");
            left_axes_format = "#AH";
        }
        else if(Bar_Type_MonCapPercent == mBarType)
        {
            chart_tile_str = getChartTitleString("CapPercent", "%1.2f%%");
            left_axes_format = "#%";
        }
        else if(Bar_Type_MonTmp == mBarType)
        {
            chart_tile_str = getChartTitleString("MonTmp", "%1.1f¡ãC");
            left_axes_format = "#0.0¡ãC";
            ax_left_pm_min = (float) 0.5;
            ax_left_pm_max = (float) 1.1;
        }
        else if(Bar_Type_MonRes == mBarType)
        {
            chart_tile_str = getChartTitleString("MonRes", "%1.3fm¦¸");
            left_axes_format = "#0.00m¦¸";
            ax_left_pm_min = (float) 0.5;
            ax_left_pm_max = (float) 1.1;
        }
        else if(Bar_Type_MonSer == mBarType)
        {
            chart_tile_str = getChartTitleString("MonSer", "%1.0f");
            left_axes_format = "#";
            ax_left_pm_min = (float) 0.5;
            ax_left_pm_max = (float) 1.1;
        }
        else if(Bar_Type_MonSerPercent == mBarType)
        {
            chart_tile_str = getChartTitleString("MonSerPercent", "%1.1f%%");
            left_axes_format = "#%";
            ax_left_pm_min = (float) 0.5;
            ax_left_pm_max = (float) 1.1;
        }
        else if(Bar_Type_ConnRes == mBarType)
        {
            chart_tile_str = getChartTitleString("ConnRes", "%1.3fm¦¸");
            left_axes_format = "#0.00m¦¸";
            ax_left_pm_min = (float) 0.5;
            ax_left_pm_max = (float) 1.1;
        }
        
        this.getAxes().getLeft().getLabels().setValueFormat(left_axes_format);
        this.getChart().getTitle().setText(chart_tile_str);
        
        float left_ax = (float) Math.abs(bar_ser.getMaxYValue());
        float left_ax_min = (float) (Math.abs(min)*ax_left_pm_min);
        if((bar_leftAxMax < (left_ax*1.05)) || (bar_leftAxMax > (left_ax*1.1)))
        {
            bar_leftAxMax = (bar_ser.getMaxYValue()*ax_left_pm_max);
        }
        //leftAxMax = bar_leftAxMax;
        
        this.getAxes().getLeft().setMinMax(left_ax_min, bar_leftAxMax);
        if(true == manulbottomAx)
        {
            this.getZoom().undo();
            this.getAxes().getBottom().setMinMax(0.2, chart_value_show_count+0.6);
        }
    }
}
/************************************************************************************************/