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.
17 lines
515 B
17 lines
515 B
package com.fr.design.formula; |
|
|
|
import com.fr.base.BaseFormula; |
|
|
|
/** |
|
* @author Carlson |
|
* @version 11.0 |
|
* Created by Carlson on 2023/8/14 17:15 |
|
* @description 默认的公式输入面板(包含一个输入框和一个F(x)按钮),清空公式内容后不会显示“$$$”,主要在图表配置面板里使用 |
|
**/ |
|
public class DefaultTinyFormulaPane extends TinyFormulaPane{ |
|
|
|
@Override |
|
protected void populateTextField(BaseFormula fm) { |
|
formulaTextField.setText(fm.getContent()); |
|
} |
|
}
|
|
|