|
|
|
@ -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;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|