feat: 时间选择器的配置项补充

时间选择器的配置项补充
main
hong.yang 2 years ago
parent 7ff642a4e1
commit 92d390ceae

@ -23,6 +23,39 @@ public class ScreenTimePickerChart extends Chart {
@Data
public static class Customize {
@ApiModelProperty(notes = "值")
private String value;
@ApiModelProperty(notes = "选择框背景颜色")
private String backgroundColor;
@ApiModelProperty(notes = "选择框文字颜色")
private String fontColor;
@ApiModelProperty(notes = "选择框文字大小")
private Integer fontSize;
@ApiModelProperty(notes = "下拉框背景颜色")
private String dropDownBackgroundColor;
@ApiModelProperty(notes = "下拉框字体颜色")
private String dropDownFontColor;
@ApiModelProperty(notes = "下拉项hover背景颜色")
private String dropDownHoverBackgroundColor;
@ApiModelProperty(notes = "下拉项hover字体颜色")
private String dropDownHoverFontColor;
@ApiModelProperty(notes = "下拉项激活文字颜色")
private String dropDownSelectedFontColor;
@ApiModelProperty(notes = "时间格式化类型:Date 对象default时间戳timestamp自定义custom")
private String formatType;
@ApiModelProperty(notes = "绑定值的格式")
private String valueFormat;
}

Loading…
Cancel
Save