帆软报表设计器源代码。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

23 lines
645 B

package com.fr.plugin.chart.scatter;
import com.fr.plugin.chart.designer.component.VanChartHtmlLabelPane;
import com.fr.plugin.chart.designer.style.VanChartStylePane;
import javax.swing.*;
/**
* 散点图标签界面
*/
public class VanChartScatterLabelContentPane extends VanChartScatterTooltipContentPane{
private static final long serialVersionUID = 5595016643808487922L;
public VanChartScatterLabelContentPane(VanChartStylePane parent, JPanel showOnPane) {
super(parent, showOnPane);
}
@Override
protected VanChartHtmlLabelPane createHtmlLabelPane() {
return new VanChartHtmlLabelPane();
}
}