Browse Source
Merge in DESIGN/design from ~BJORN/design:feature/10.0 to feature/10.0 * commit '47aca6fa350f614fe64b1eb9c5439c31a7738b1f': CHART-19719 图例交互修改 && CHART-19692 仪表盘固定大小最小值修改feature/10.0
Bjorn
3 years ago
7 changed files with 52 additions and 52 deletions
@ -0,0 +1,21 @@
|
||||
package com.fr.van.chart.designer.style; |
||||
|
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* Created by eason on 2016/12/14. |
||||
*/ |
||||
public class VanLegendPaneWidthOutFixedCheck extends VanChartPlotLegendPane{ |
||||
|
||||
public VanLegendPaneWidthOutFixedCheck(){ |
||||
|
||||
} |
||||
|
||||
public VanLegendPaneWidthOutFixedCheck(VanChartStylePane parent){ |
||||
super(parent); |
||||
} |
||||
|
||||
protected JPanel createLegendPane(){ |
||||
return this.createLegendPaneWithoutFixedCheck(); |
||||
} |
||||
} |
@ -1,21 +0,0 @@
|
||||
package com.fr.van.chart.designer.style; |
||||
|
||||
import javax.swing.JPanel; |
||||
|
||||
/** |
||||
* Created by eason on 2016/12/14. |
||||
*/ |
||||
public class VanLegendPaneWidthOutHighlight extends VanChartPlotLegendPane{ |
||||
|
||||
public VanLegendPaneWidthOutHighlight(){ |
||||
|
||||
} |
||||
|
||||
public VanLegendPaneWidthOutHighlight(VanChartStylePane parent){ |
||||
super(parent); |
||||
} |
||||
|
||||
protected JPanel createLegendPane(){ |
||||
return this.createLegendPaneWithoutHighlight(); |
||||
} |
||||
} |
Loading…
Reference in new issue