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.
21 lines
594 B
21 lines
594 B
7 years ago
|
package com.fr.plugin.demo;
|
||
|
|
||
|
import com.fr.extended.chart.AbstractExtendedStylePane;
|
||
|
import com.fr.extended.chart.ExtendedScrollPane;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
import java.util.List;
|
||
|
|
||
|
/**
|
||
|
* Created by shine on 2018/3/25.
|
||
|
*/
|
||
|
public class DemoStylePane extends AbstractExtendedStylePane<DemoChart>{
|
||
|
@Override
|
||
|
protected List<ExtendedScrollPane<DemoChart>> initPaneList() {
|
||
|
List<ExtendedScrollPane<DemoChart>> list = new ArrayList<ExtendedScrollPane<DemoChart>>();
|
||
|
list.add(new DemoTitlePane());
|
||
|
list.add(new DemoBackgroundPane());
|
||
|
return list;
|
||
|
}
|
||
|
}
|