forked from fanruan/finekit
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.
20 lines
627 B
20 lines
627 B
6 years ago
|
package com.fanruan.api.design.chart;
|
||
|
|
||
|
import com.fanruan.api.design.chart.field.AbstractCellDataFieldsPane;
|
||
|
import com.fanruan.api.design.chart.field.AbstractDataSetFieldsPane;
|
||
|
|
||
|
/**
|
||
|
* @author Bjorn
|
||
|
* @version 10.0
|
||
|
* Created by Bjorn on 2019-09-18
|
||
|
*/
|
||
|
public class SingleDataPane extends com.fr.design.chartx.single.SingleDataPane {
|
||
|
|
||
|
/**
|
||
|
* 构造函数,组合数据集数据源配置面板和单元格数据源配置面板
|
||
|
*/
|
||
|
public SingleDataPane(AbstractDataSetFieldsPane dataSetFieldsPane, AbstractCellDataFieldsPane cellDataFieldsPane) {
|
||
|
super(dataSetFieldsPane, cellDataFieldsPane);
|
||
|
}
|
||
|
}
|