File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/ContourPlot.java
|
|
File path: /jfreechart-1.0.10/src/org/jfree/chart/plot/ContourPlot.java
|
Method name: void contourRenderer(Graphics2D, Rectangle2D, PlotRenderingInfo, ContourPlot, ValueAxis, ValueAxis, ColorBar, ContourDataset, CrosshairState)
|
|
Method name: void pointRenderer(Graphics2D, Rectangle2D, PlotRenderingInfo, ContourPlot, ValueAxis, ValueAxis, ColorBar, ContourDataset, CrosshairState)
|
Number of AST nodes: 6
|
|
Number of AST nodes: 6
|
|
1 | if (plot.isDomainCrosshairLockedOnData()) {↵ | | 1 | if (plot.isDomainCrosshairLockedOnData()) {↵
|
2 | if (plot.isRangeCrosshairLockedOnData()) {↵ | | 2 | if (plot.isRangeCrosshairLockedOnData()) {↵
|
3 | // both axes↵ | | 3 | // both axes↵
|
4 | crosshairState.updateCrosshairPoint(x[k], y[k], transX, ↵ | | 4 | crosshairState.updateCrosshairPoint(x[k], y[k], transX, ↵
|
5 | transY, PlotOrientation.VERTICAL);↵ | | 5 | transY, PlotOrientation.VERTICAL);↵
|
6 | }↵ | | 6 | }↵
|
7 | else {↵ | | 7 | else {↵
|
8 | // just the horizontal axis...↵ | | 8 | // just the horizontal axis...↵
|
9 | crosshairState.updateCrosshairX(transX);↵ | | 9 | crosshairState.updateCrosshairX(transX);↵
|
10 | }↵ | | 10 | }↵
|
11 | }↵ | | 11 | }↵
|
12 | else {↵ | | 12 | else {↵
|
13 | if (plot.isRangeCrosshairLockedOnData()) {↵ | | 13 | if (plot.isRangeCrosshairLockedOnData()) {↵
|
14 | // just the vertical axis...↵ | | 14 | // just the vertical axis...↵
|
15 | crosshairState.updateCrosshairY(transY);↵ | | 15 | crosshairState.updateCrosshairY(transY);↵
|
16 | }↵ | | 16 | }↵
|
17 | } | | 17 | }
|