|
|
|
@ -46,8 +46,8 @@ public class MeterPlotReportDataContentPane extends AbstractReportDataContentPan
|
|
|
|
|
double[] rowSize = { p, p, p}; |
|
|
|
|
|
|
|
|
|
Component[][] components = new Component[][]{ |
|
|
|
|
new Component[]{new UILabel(CATENAME), getSingCatePane()}, |
|
|
|
|
new Component[]{new UILabel(NVALUE), singValuePane = new TinyFormulaPane()}, |
|
|
|
|
new Component[]{new UILabel(getCateName()), getSingCatePane()}, |
|
|
|
|
new Component[]{new UILabel(getNValue()), singValuePane = new TinyFormulaPane()}, |
|
|
|
|
new Component[]{null, null} |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
@ -66,6 +66,14 @@ public class MeterPlotReportDataContentPane extends AbstractReportDataContentPan
|
|
|
|
|
|
|
|
|
|
this.add(pane, BorderLayout.CENTER); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected String getCateName() { |
|
|
|
|
return CATENAME; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
protected String getNValue() { |
|
|
|
|
return NVALUE; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public void populateBean(ChartCollection collection) { |
|
|
|
|
TopDefinitionProvider definition = collection.getSelectedChart().getFilterDefinition(); |
|
|
|
|