插件开发工具库,推荐依赖该工具库。
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.
 
 

19 lines
611 B

package com.fanruan.api.design.chart;
import com.fanruan.api.design.chart.field.BaseCellDataFieldsPane;
import com.fanruan.api.design.chart.field.BaseDataSetFieldsPane;
/**
* @author Bjorn
* @version 10.0
* Created by Bjorn on 2019-09-18
*/
public class SingleDataPane extends com.fr.design.chartx.single.SingleDataPane {
/**
* 构造函数,组合数据集数据源配置面板和单元格数据源配置面板
*/
public SingleDataPane(BaseDataSetFieldsPane dataSetFieldsPane, BaseCellDataFieldsPane cellDataFieldsPane) {
super(dataSetFieldsPane, cellDataFieldsPane);
}
}