1 | Axis domainAxis = null;↵ | | 1 | Axis rangeAxis = null;↵
|
2 | if (plot instanceof CategoryPlot) {↵ | | 2 | if (plot instanceof CategoryPlot) {↵
|
3 | CategoryPlot p = (CategoryPlot) plot;↵ | | 3 | CategoryPlot p = (CategoryPlot) plot;↵
|
4 | domainAxis = p.getDomainAxis();↵ | | 4 | rangeAxis = p.getRangeAxis();↵
|
5 | }↵ | | 5 | }↵
|
6 | else if (plot instanceof XYPlot) {↵ | | 6 | else if (plot instanceof XYPlot) {↵
|
7 | XYPlot p = (XYPlot) plot;↵ | | 7 | XYPlot p = (XYPlot) plot;↵
|
8 | domainAxis = p.getDomainAxis();↵ | | 8 | rangeAxis = p.getRangeAxis();↵
|
9 | }↵ | | 9 | }↵
|
10 | if (domainAxis != null) {↵ | | 10 | if (rangeAxis != null) {↵
|
11 | this.domainAxisPropertyPanel.setAxisProperties(domainAxis);↵ | | 11 | this.rangeAxisPropertyPanel.setAxisProperties(rangeAxis);↵
|
12 | } | | 12 | }
|