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.
38 lines
1.0 KiB
38 lines
1.0 KiB
package com.fr.design.chartx.component; |
|
|
|
import com.fr.chartx.data.field.ColumnField; |
|
import com.fr.design.chartx.fields.AbstractCellDataFieldsPane; |
|
import com.fr.design.formula.DefaultTinyFormulaPane; |
|
import com.fr.design.formula.TinyFormulaPane; |
|
|
|
/** |
|
* Created by shine on 2019/4/12. |
|
*/ |
|
public class MultiTinyFormulaPane extends AbstractMultiComponentPane<TinyFormulaPane> { |
|
|
|
@Override |
|
protected int componentWidth() { |
|
return 116; |
|
} |
|
|
|
@Override |
|
protected TinyFormulaPane createFirstFieldComponent() { |
|
return new DefaultTinyFormulaPane(); |
|
} |
|
|
|
@Override |
|
protected TinyFormulaPane createOtherFieldComponent() { |
|
return new DefaultTinyFormulaPane(); |
|
} |
|
|
|
@Override |
|
protected void populateField(TinyFormulaPane component, ColumnField field) { |
|
AbstractCellDataFieldsPane.populateField(component, field); |
|
} |
|
|
|
@Override |
|
protected void updateField(TinyFormulaPane component, ColumnField field) { |
|
AbstractCellDataFieldsPane.updateField(component, field); |
|
|
|
} |
|
} |