forked from fanruan/bi-starter-latest
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.
23 lines
581 B
23 lines
581 B
6 years ago
|
package com.finebi.plugin;
|
||
|
|
||
|
import com.fr.web.struct.Component;
|
||
|
import com.fr.web.struct.category.ScriptPath;
|
||
|
import com.fr.web.struct.category.StylePath;
|
||
|
|
||
|
public class BIBoxPlotChartComponent extends Component {
|
||
|
|
||
|
public static final BIBoxPlotChartComponent KEY = new BIBoxPlotChartComponent();
|
||
|
|
||
|
private BIBoxPlotChartComponent() {
|
||
|
|
||
|
}
|
||
|
|
||
|
@Override
|
||
|
public ScriptPath script() {
|
||
|
return ScriptPath.build("com/finebi/plugin/web/js/chart.js");
|
||
|
}
|
||
|
|
||
|
public StylePath style() {
|
||
|
return StylePath.build("com/finebi/plugin/web/css/chart.css");
|
||
|
}
|
||
|
}
|