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.
24 lines
647 B
24 lines
647 B
package com.finebi.plugin; |
|
|
|
import com.fr.web.struct.Component; |
|
import com.fr.web.struct.category.ParserType; |
|
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", ParserType.DYNAMIC); |
|
} |
|
} |