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
671 B
23 lines
671 B
package com.finebi.plugin; |
|
|
|
import com.finebi.conf.internalimp.component.ReportComponent; |
|
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 |
|
public class BIDesignBoxPlotChart extends AbstractWebResourceProvider { |
|
|
|
@Override |
|
public Atom attach() { |
|
return ReportComponent.KEY; |
|
} |
|
|
|
@Override |
|
@Focus(id = "com.finebi.plugin.BIDesignBoxPlotChart", text = "箱线图", source = Original.PLUGIN) |
|
public Atom client() { |
|
return BIBoxPlotChartComponent.KEY; |
|
} |
|
} |