forked from fanruan/demo-show-charts
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
594 B
20 lines
594 B
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; |
|
} |
|
}
|
|
|