FineBI插件开发工程。
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.

24 lines
647 B

6 years ago
package com.finebi.plugin;
import com.fr.web.struct.Component;
6 years ago
import com.fr.web.struct.category.ParserType;
6 years ago
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() {
6 years ago
return StylePath.build("com/finebi/plugin/web/css/chart.css", ParserType.DYNAMIC);
6 years ago
}
}