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.
30 lines
535 B
30 lines
535 B
package com.fr.plugin.demo; |
|
|
|
import com.fr.extended.chart.ExtendedScrollPane; |
|
|
|
import javax.swing.JPanel; |
|
|
|
/** |
|
* Created by shine on 2018/3/25. |
|
*/ |
|
public class DemoBackgroundPane extends ExtendedScrollPane<DemoChart>{ |
|
@Override |
|
public void populateBean(DemoChart ob) { |
|
|
|
} |
|
|
|
@Override |
|
public void updateBean(DemoChart ob) { |
|
|
|
} |
|
|
|
@Override |
|
protected JPanel createContentPane() { |
|
return new JPanel(); |
|
} |
|
|
|
@Override |
|
protected String title4PopupWindow() { |
|
return "背景"; |
|
} |
|
}
|
|
|