Browse Source
* commit 'c615a0a0c89e79834b46737cdc34979274c410aa': CHART-13031 雷达图、面积图的系列线型和条件属性线型不支持虚线feature/big-screen
Qinghui.Liu
5 years ago
7 changed files with 57 additions and 16 deletions
@ -0,0 +1,11 @@
|
||||
package com.fr.van.chart.designer.component; |
||||
|
||||
import com.fr.plugin.chart.type.LineType; |
||||
|
||||
public class VanChartLineTypePaneWithoutDashed extends VanChartLineTypePane{ |
||||
|
||||
@Override |
||||
protected LineTypeComboBox createLineType() { |
||||
return new LineTypeComboBox(new LineType[]{LineType.NONE, LineType.SOLID}); |
||||
} |
||||
} |
@ -0,0 +1,16 @@
|
||||
package com.fr.van.chart.designer.other.condition.item; |
||||
|
||||
import com.fr.design.condition.ConditionAttributesPane; |
||||
import com.fr.van.chart.designer.component.VanChartLineTypePane; |
||||
import com.fr.van.chart.designer.component.VanChartLineTypePaneWithoutDashed; |
||||
|
||||
public class VanChartLineTypeConditionPaneWithoutDashed extends VanChartLineTypeConditionPane { |
||||
|
||||
public VanChartLineTypeConditionPaneWithoutDashed(ConditionAttributesPane conditionAttributesPane) { |
||||
super(conditionAttributesPane); |
||||
} |
||||
|
||||
protected VanChartLineTypePane createLinePane() { |
||||
return new VanChartLineTypePaneWithoutDashed(); |
||||
} |
||||
} |
Loading…
Reference in new issue