Browse Source
* commit 'c1d226b425fb12e43c164147a8e3ddc861155e5e': REPORT-98466 FileNodeConstants中使用List存储文件类型可能导致重复 REPORT-100238 fix: 桌面上用设计器打不开fvs文件 REPORT-103732 海外版本地图组件的GIS图层优化-fvs下标准自动配置切换问题 加个注释 #none REPORT-101812 fix: 国际化文本截断 fix: 保留“=” #none fix: 替换图表用到的TinyFormulaPane #REPORT-102440 REPORT-102440 fix:清除公式内容后不显示"$$$" REPORT-102520 fix:代码质量 REPORT-102520 fix:面板样式优化bugfix/11.0
superman
1 year ago
52 changed files with 236 additions and 150 deletions
@ -0,0 +1,17 @@
|
||||
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()); |
||||
} |
||||
} |
Loading…
Reference in new issue