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
663 B
23 lines
663 B
5 years ago
|
package com.finebi.plugin;
|
||
|
|
||
|
import com.finebi.conf.internalimp.component.ShowComponent;
|
||
|
import com.fr.decision.fun.impl.AbstractWebResourceProvider;
|
||
|
import com.fr.intelli.record.Focus;
|
||
|
import com.fr.intelli.record.Original;
|
||
|
import com.fr.record.analyzer.EnableMetrics;
|
||
|
import com.fr.web.struct.Atom;
|
||
|
|
||
|
@EnableMetrics
|
||
5 years ago
|
public class BIShowBoxPlotChart extends AbstractWebResourceProvider {
|
||
5 years ago
|
|
||
|
@Override
|
||
|
public Atom attach() {
|
||
|
return ShowComponent.KEY;
|
||
|
}
|
||
|
|
||
|
@Override
|
||
5 years ago
|
@Focus(id = "com.finebi.plugin.BIShowBoxPlotChart", text = "箱线图", source = Original.PLUGIN)
|
||
5 years ago
|
public Atom client() {
|
||
5 years ago
|
return BIBoxPlotChartComponent.KEY;
|
||
5 years ago
|
}
|
||
|
}
|