-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChart2D.java
More file actions
228 lines (160 loc) · 5.61 KB
/
Copy pathChart2D.java
File metadata and controls
228 lines (160 loc) · 5.61 KB
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
package wf.util;
import java.awt.Color;
import java.awt.Paint;
import org.jfree.chart.JFreeChart;
import org.jfree.chart.axis.AxisLocation;
import org.jfree.chart.axis.NumberAxis;
import org.jfree.chart.axis.NumberTickUnit;
import org.jfree.chart.plot.XYPlot;
import org.jfree.chart.renderer.PaintScale;
import org.jfree.chart.renderer.xy.XYBlockRenderer;
import org.jfree.chart.title.PaintScaleLegend;
import org.jfree.data.xy.XYZDataset;
import org.jfree.ui.RectangleEdge;
import org.jfree.ui.RectangleInsets;
public class Chart2D {
double xAxisMin;
double xAxisMax;
double yAxisMin;
double yAxisMax;
private static final Chart2D INSTANCE = new Chart2D();
private NumberAxis xAxis;
private NumberAxis yAxis;
private JFreeChart chart2D;
private XYPlot plot;
private XYBlockRenderer r;
private NumberAxis scaleAxis;
private PaintScaleLegend legend;
private SpectrumPaintScale ps;
public Chart2D() {
xAxis = new NumberAxis("x Axis");
xAxis.setRange(0, 100);
//xAxis.setTickUnit(new NumberTickUnit(0.004));
xAxis.setTickUnit(new NumberTickUnit(10));
//xAxis.setUpperBound(0.1);
yAxis = new NumberAxis("y Axis");
//the first null is the dataset. Later plot.setData()
plot = new XYPlot(null, xAxis, yAxis, null);
//SpectrumPaintScale ps = new SpectrumPaintScale(0, N * N);
//SpectrumPaintScale ps = new SpectrumPaintScale(0, 12 * 100);
ps = new SpectrumPaintScale(0, 10);
r = new XYBlockRenderer();
r.setPaintScale(ps);
r.setBlockHeight(.01f);
r.setBlockWidth(.01f);
plot.setRenderer(r);
//chart2D = new JFreeChart("Title",
// JFreeChart.DEFAULT_TITLE_FONT, plot, false);
chart2D = new JFreeChart(null,
JFreeChart.DEFAULT_TITLE_FONT, plot, false);
chart2D.setPadding(new RectangleInsets(10, 10, 10, 10));
scaleAxis = new NumberAxis("Scale");
scaleAxis.setAxisLinePaint(Color.white);
scaleAxis.setTickMarkPaint(Color.white);
legend = new PaintScaleLegend(ps, scaleAxis);
legend.setSubdivisionCount(128);
legend.setAxisLocation(AxisLocation.TOP_OR_RIGHT);
legend.setPadding(new RectangleInsets(10, 10, 10, 10));
legend.setStripWidth(20);
legend.setPosition(RectangleEdge.RIGHT);
legend.setBackgroundPaint(Color.WHITE);
chart2D.addSubtitle(legend);
chart2D.setBackgroundPaint(Color.white);
}
private static class SpectrumPaintScale implements PaintScale {
private static final float H1 = -0.5f;
private static final float H2 = (float) (Math.PI / 18);
// private static final float H2 = 1f;
//private final double lowerBound;
//private final double upperBound;
private double lowerBound;
private double upperBound;
public SpectrumPaintScale(double lowerBound, double upperBound) {
this.lowerBound = lowerBound;
this.upperBound = upperBound;
}
@Override
public double getLowerBound() {
return lowerBound;
}
@Override
public double getUpperBound() {
return upperBound;
}
@Override
public Paint getPaint(double value) {
float scaledValue = (float) (value / (getUpperBound() - getLowerBound()));
float scaledH = H1 + scaledValue * (H2 - H1);
return Color.getHSBColor(scaledH, 1f, 1f);
}
}
public void setXaxisMin(double value) {
xAxis.setLowerBound(value);
}
public void setXaxisMax(double value) {
xAxis.setUpperBound(value);
}
public void setXaxisTickUnit(double value) {
xAxis.setTickUnit(new NumberTickUnit(value));
}
public void setYaxisMin(double value) {
yAxis.setLowerBound(value);
}
public void setYaxisMax(double value) {
yAxis.setUpperBound(value);
}
public void setYaxisTickUnit(double value) {
yAxis.setTickUnit(new NumberTickUnit(value));
}
public void setXaxisTitle(String title) {
xAxis.setLabel(title);
}
public void setYaxisTitle(String title) {
yAxis.setLabel(title);
}
public JFreeChart getChart2D() {
return chart2D;
}
public void clearPlotData() {
plot.setDataset(null);
}
public void updateLegend(double value, double stepX, double stepY) {
//ps.setUpperBound(value);
//r = new XYBlockRenderer();
chart2D.removeSubtitle(legend);
chart2D.removeLegend();
ps = new SpectrumPaintScale(0, value);
r.setPaintScale(ps);
r.setBlockHeight(stepY);
r.setBlockWidth(stepX);
plot.setRenderer(r);
//chart2D = new JFreeChart("Title",
// JFreeChart.DEFAULT_TITLE_FONT, plot, false);
// chart2D = new JFreeChart(null,
// JFreeChart.DEFAULT_TITLE_FONT, plot, false);
// chart2D.setPadding(new RectangleInsets(10, 10, 10, 10));
// scaleAxis = new NumberAxis("Scale");
// scaleAxis.setAxisLinePaint(Color.white);
//scaleAxis.setTickMarkPaint(Color.white);
legend = new PaintScaleLegend(ps, scaleAxis);
legend.setSubdivisionCount(128);
legend.setAxisLocation(AxisLocation.TOP_OR_RIGHT);
legend.setPadding(new RectangleInsets(10, 10, 10, 10));
legend.setStripWidth(20);
legend.setPosition(RectangleEdge.RIGHT);
legend.setBackgroundPaint(Color.WHITE);
// chart2D.removeLegend();
chart2D.addSubtitle(legend);
//chart2D.setBackgroundPaint(Color.white);
}
public void setAxisTickUnit(double valueX, double valueY) {
xAxis.setTickUnit(new NumberTickUnit(valueX));
yAxis.setTickUnit(new NumberTickUnit(valueY));
}
public void setXYZdataset(XYZDataset dataset) {
plot.setDataset(dataset);
}
public static Chart2D getInstance() {
return INSTANCE;
}
}