Browse Source
Merge in DESIGN/design from ~QINGHUI.LIU/design:release/10.0 to release/10.0 * commit 'ee953baced5538c00de1ddec79d8e8273bdf209a': 修改地图散点标记点 删除静态变量 散点图标记点条件属性界面调整 CHART-13833 散点图标记点删除无,增加自动,调整标记点界面交互feature/big-screen
Qinghui.Liu
5 years ago
7 changed files with 83 additions and 73 deletions
@ -0,0 +1,28 @@
|
||||
package com.fr.van.chart.scatter.component; |
||||
|
||||
import com.fr.chart.chartglyph.Marker; |
||||
import com.fr.design.condition.ConditionAttributesPane; |
||||
import com.fr.plugin.chart.marker.type.MarkerType; |
||||
import com.fr.van.chart.designer.component.VanChartMarkerPane; |
||||
import com.fr.van.chart.designer.component.marker.VanChartCommonMarkerPane; |
||||
import com.fr.van.chart.designer.other.condition.item.VanChartMarkerConditionPane; |
||||
|
||||
public class VanChartScatterMarkerConditionPane extends VanChartMarkerConditionPane { |
||||
|
||||
public VanChartScatterMarkerConditionPane(ConditionAttributesPane conditionAttributesPane) { |
||||
super(conditionAttributesPane); |
||||
} |
||||
|
||||
protected void initMarkerPane() { |
||||
markerPane = new VanChartMarkerPane() { |
||||
protected VanChartCommonMarkerPane createCommonMarkerPane() { |
||||
|
||||
return new VanChartCommonMarkerPane() { |
||||
protected Marker[] getMarkers() { |
||||
return getNormalMarkersWithCustom(new MarkerType[]{MarkerType.MARKER_AUTO}); |
||||
} |
||||
}; |
||||
} |
||||
}; |
||||
} |
||||
} |
Loading…
Reference in new issue