|
|
@ -137,7 +137,7 @@ public class HyperlinkMapFactory { |
|
|
|
HashMap<Class, Class> map = new HashMap<Class, Class>(); |
|
|
|
HashMap<Class, Class> map = new HashMap<Class, Class>(); |
|
|
|
|
|
|
|
|
|
|
|
map.put(ReportletHyperlink.class, getClassWithPrefix(HyperlinkMapFactory.Report.class, plotType)); |
|
|
|
map.put(ReportletHyperlink.class, getClassWithPrefix(HyperlinkMapFactory.Report.class, plotType)); |
|
|
|
map.put(EmailJavaScript.class, ChartEmailPane.class); |
|
|
|
map.put(EmailJavaScript.class, VanChartEmailPane.class); |
|
|
|
map.put(WebHyperlink.class, getClassWithPrefix(HyperlinkMapFactory.Web.class, plotType)); |
|
|
|
map.put(WebHyperlink.class, getClassWithPrefix(HyperlinkMapFactory.Web.class, plotType)); |
|
|
|
map.put(ParameterJavaScript.class, getClassWithPrefix(HyperlinkMapFactory.Para.class, plotType)); |
|
|
|
map.put(ParameterJavaScript.class, getClassWithPrefix(HyperlinkMapFactory.Para.class, plotType)); |
|
|
|
|
|
|
|
|
|
|
@ -386,33 +386,40 @@ public class HyperlinkMapFactory { |
|
|
|
return ValueEditorPaneFactory.createValueEditorPane(addBasicEditors(list)); |
|
|
|
return ValueEditorPaneFactory.createValueEditorPane(addBasicEditors(list)); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//网络报表
|
|
|
|
//网络报表
|
|
|
|
public static class Report { |
|
|
|
public static class Report { |
|
|
|
public static class VAN_CHART extends ReportletHyperlinkPane.CHART { |
|
|
|
public static class VAN_CHART extends ReportletHyperlinkPane.CHART { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends ReportletHyperlinkPane.CHART{ |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_SCATTER extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_GANNT extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
@ -420,44 +427,49 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends ReportletHyperlinkPane.CHART_METER { |
|
|
|
public static class VAN_CHART_GAUGE extends ReportletHyperlinkPane.CHART_METER { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MAP extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends ReportletHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Report.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
@ -465,25 +477,39 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//邮箱
|
|
|
|
|
|
|
|
public static class VanChartEmailPane extends ChartEmailPane { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
//网页链接
|
|
|
|
//网页链接
|
|
|
|
public static class Web { |
|
|
|
public static class Web { |
|
|
|
public static class VAN_CHART extends WebHyperlinkPane.CHART { |
|
|
|
public static class VAN_CHART extends WebHyperlinkPane.CHART { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_SCATTER extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
public static class VAN_CHART_GANNT extends WebHyperlinkPane.CHART{ |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
@ -491,16 +517,21 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends WebHyperlinkPane.CHART_METER { |
|
|
|
public static class VAN_CHART_GAUGE extends WebHyperlinkPane.CHART_METER { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MAP extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
@ -508,34 +539,34 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Web.VAN_CHART { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends WebHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Web.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
@ -546,23 +577,28 @@ public class HyperlinkMapFactory { |
|
|
|
//动态参数
|
|
|
|
//动态参数
|
|
|
|
public static class Para { |
|
|
|
public static class Para { |
|
|
|
public static class VAN_CHART extends ParameterJavaScriptPane.CHART { |
|
|
|
public static class VAN_CHART extends ParameterJavaScriptPane.CHART { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_SCATTER extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_GANNT extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
@ -570,16 +606,21 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends ParameterJavaScriptPane.CHART_METER { |
|
|
|
public static class VAN_CHART_GAUGE extends ParameterJavaScriptPane.CHART_METER { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_MAP extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
@ -587,34 +628,34 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Para.VAN_CHART { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends ParameterJavaScriptPane.CHART{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Para.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
@ -625,74 +666,84 @@ public class HyperlinkMapFactory { |
|
|
|
//js超链
|
|
|
|
//js超链
|
|
|
|
public static class Js { |
|
|
|
public static class Js { |
|
|
|
public static class VAN_CHART extends JavaScriptImplPane.CHART { |
|
|
|
public static class VAN_CHART extends JavaScriptImplPane.CHART { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_SCATTER extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_GANNT extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends JavaScriptImplPane.CHART_METER{ |
|
|
|
public static class VAN_CHART_GAUGE extends Js.VAN_CHART { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_MAP extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Js.VAN_CHART { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends JavaScriptImplPane.CHART{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Js.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
@ -703,23 +754,27 @@ public class HyperlinkMapFactory { |
|
|
|
//图表超链-悬浮窗图表
|
|
|
|
//图表超链-悬浮窗图表
|
|
|
|
public static class Chart_Chart { |
|
|
|
public static class Chart_Chart { |
|
|
|
public static class VAN_CHART extends ChartHyperPoplinkPane { |
|
|
|
public static class VAN_CHART extends ChartHyperPoplinkPane { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_SCATTER extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_GANNT extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
@ -727,50 +782,54 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends ChartHyperPoplinkPane.CHART_METER { |
|
|
|
public static class VAN_CHART_GAUGE extends ChartHyperPoplinkPane.CHART_METER { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_MAP extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Chart_Chart.VAN_CHART { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends ChartHyperPoplinkPane{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Chart_Chart.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
@ -781,23 +840,27 @@ public class HyperlinkMapFactory { |
|
|
|
//图表超链-联动单元格
|
|
|
|
//图表超链-联动单元格
|
|
|
|
public static class Chart_Cell { |
|
|
|
public static class Chart_Cell { |
|
|
|
public static class VAN_CHART extends ChartHyperRelateCellLinkPane { |
|
|
|
public static class VAN_CHART extends ChartHyperRelateCellLinkPane { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_SCATTER extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_GANNT extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
@ -805,50 +868,54 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends ChartHyperRelateCellLinkPane.CHART_METER { |
|
|
|
public static class VAN_CHART_GAUGE extends ChartHyperRelateCellLinkPane.CHART_METER { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_MAP extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Chart_Cell.VAN_CHART { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends ChartHyperRelateCellLinkPane{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Chart_Cell.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
@ -859,23 +926,27 @@ public class HyperlinkMapFactory { |
|
|
|
//图表超链-悬浮元素
|
|
|
|
//图表超链-悬浮元素
|
|
|
|
public static class Chart_Float { |
|
|
|
public static class Chart_Float { |
|
|
|
public static class VAN_CHART extends ChartHyperRelateFloatLinkPane { |
|
|
|
public static class VAN_CHART extends ChartHyperRelateFloatLinkPane { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_SCATTER extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_GANNT extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
@ -883,50 +954,54 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends ChartHyperRelateFloatLinkPane.CHART_METER { |
|
|
|
public static class VAN_CHART_GAUGE extends ChartHyperRelateFloatLinkPane.CHART_METER { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_MAP extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Chart_Float.VAN_CHART { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends ChartHyperRelateFloatLinkPane{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Chart_Float.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
@ -937,23 +1012,27 @@ public class HyperlinkMapFactory { |
|
|
|
//当前表单对象
|
|
|
|
//当前表单对象
|
|
|
|
public static class Form { |
|
|
|
public static class Form { |
|
|
|
public static class VAN_CHART extends FormHyperlinkPane.CHART { |
|
|
|
public static class VAN_CHART extends FormHyperlinkPane.CHART { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTICATEGORY extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTICATEGORY extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
return getMultiCategoryEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_SCATTER extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_SCATTER extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
return getScatterValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GANNT extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_GANNT extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getGanntValueEditorPane(); |
|
|
|
return getGanntValueEditorPane(); |
|
|
@ -961,16 +1040,20 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_GAUGE extends FormHyperlinkPane.CHART_METER { |
|
|
|
public static class VAN_CHART_GAUGE extends FormHyperlinkPane.CHART_METER { |
|
|
|
|
|
|
|
@Override |
|
|
|
|
|
|
|
protected boolean needRenamePane() { |
|
|
|
|
|
|
|
return false; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MAP extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MAP extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMapValueEditorPane(); |
|
|
|
return getMapValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_LINE_MAP extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_LINE_MAP extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getLineMapValueEditorPane(); |
|
|
|
return getLineMapValueEditorPane(); |
|
|
@ -978,34 +1061,34 @@ public class HyperlinkMapFactory { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_DRILLMAPCATALOG extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
return getDrillMapCatalogValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_MULTIPIE extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_MULTIPIE extends Form.VAN_CHART { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
return getMultiPieValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_FUNNEL extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_FUNNEL extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
return getFunnelValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_WORDCLOUD extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_WORDCLOUD extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
return getWordCloudValueEditorPane(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static class VAN_CHART_STRUCTURE extends FormHyperlinkPane.CHART{ |
|
|
|
public static class VAN_CHART_STRUCTURE extends Form.VAN_CHART { |
|
|
|
@Override |
|
|
|
@Override |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
protected ValueEditorPane getValueEditorPane() { |
|
|
|
return getStructureValueEditorPane(); |
|
|
|
return getStructureValueEditorPane(); |
|
|
|