|
|
|
@ -104,14 +104,14 @@ public class VanChartHeatMapSeriesPane extends VanChartMapSeriesPane {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
private JPanel createHeatColorPane() { |
|
|
|
|
vanChartValueColorPane = new VanChartHeatValueColorPane((VanChartStylePane) parentPane); |
|
|
|
|
setVanChartValueColorPane(new VanChartHeatValueColorPane((VanChartStylePane) parentPane)); |
|
|
|
|
double p = TableLayout.PREFERRED; |
|
|
|
|
double f = TableLayout.FILL; |
|
|
|
|
double[] row = {p}; |
|
|
|
|
double[] col = {f}; |
|
|
|
|
|
|
|
|
|
Component[][] components = new Component[][]{ |
|
|
|
|
new Component[]{vanChartValueColorPane}, |
|
|
|
|
new Component[]{getVanChartFillStylePane()}, |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
JPanel panel = TableLayout4VanChartHelper.createGapTableLayoutPane(components, row, col); |
|
|
|
@ -172,7 +172,7 @@ public class VanChartHeatMapSeriesPane extends VanChartMapSeriesPane {
|
|
|
|
|
blur.setValue(heatMapPlot.getBlur()); |
|
|
|
|
maxOpacity.populateBean(heatMapPlot.getMaxOpacity()); |
|
|
|
|
minOpacity.populateBean(heatMapPlot.getMinOpacity()); |
|
|
|
|
vanChartValueColorPane.populateBean((VanChartRangeLegend) plot.getLegend()); |
|
|
|
|
getVanChartValueColorPane().populateBean((VanChartRangeLegend) plot.getLegend()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -190,7 +190,7 @@ public class VanChartHeatMapSeriesPane extends VanChartMapSeriesPane {
|
|
|
|
|
heatMapPlot.setBlur(blur.getValue()); |
|
|
|
|
heatMapPlot.setMaxOpacity(maxOpacity.updateBean()); |
|
|
|
|
heatMapPlot.setMinOpacity(minOpacity.updateBean()); |
|
|
|
|
vanChartValueColorPane.updateBean((VanChartRangeLegend) plot.getLegend()); |
|
|
|
|
getVanChartValueColorPane().updateBean((VanChartRangeLegend) plot.getLegend()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|