theme.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. package request
  2. // AddThemeReq
  3. // @Description: 新增主题请求参数
  4. type AddThemeReq struct {
  5. ChartThemeName string `description:"主题名称"`
  6. ChartThemeTypeId int `description:"图表类型id"`
  7. }
  8. // EditThemeReq
  9. // @Description: 编辑主题请求参数
  10. type EditThemeReq struct {
  11. ChartThemeId int `description:"主题id"`
  12. ChartThemeName string `description:"主题名称"`
  13. Config string `description:"配置的值"`
  14. ChartImage string `description:"缩略图"`
  15. }
  16. // DeleteThemeReq
  17. // @Description: 删除主题请求参数
  18. type DeleteThemeReq struct {
  19. ChartThemeId int `description:"配置id"`
  20. }
  21. // SetDefaultThemeReq
  22. // @Description: 配置默认主题请求参数
  23. type SetDefaultThemeReq struct {
  24. ChartThemeId int `description:"主题id"`
  25. ChartThemeTypeId int `description:"主题类型id"`
  26. }
  27. type ColorsOptions []string
  28. type LegendOptions struct {
  29. VerticalAlign string `json:"verticalAlign"`
  30. ItemStyle struct {
  31. Color string `json:"color"`
  32. FontSize int `json:"fontSize"`
  33. Cursor string `json:"cursor"`
  34. FontWeight string `json:"fontWeight"`
  35. TextOverflow string `json:"textOverflow"`
  36. } `json:"itemStyle"`
  37. }
  38. type TitleOptions struct {
  39. Align string `json:"align"`
  40. Style struct {
  41. Color string `json:"color"`
  42. FontSize int `json:"fontSize"`
  43. } `json:"style"`
  44. }
  45. type MarkerOptions struct {
  46. Style struct {
  47. Color string `json:"color"`
  48. FontSize int `json:"fontSize"`
  49. } `json:"style"`
  50. }
  51. type AxisOptions struct {
  52. Style struct {
  53. Color string `json:"color"`
  54. FontSize int `json:"fontSize"`
  55. } `json:"style"`
  56. }
  57. type DrawOption struct {
  58. PlotBackgroundColor string `json:"plotBackgroundColor"`
  59. }
  60. type LineOptions struct {
  61. DashStyle string `json:"dashStyle"`
  62. LineWidth float64 `json:"lineWidth"`
  63. LineType string `json:"lineType"`
  64. Radius float64 `json:"radius"`
  65. }
  66. type OldChartOptions struct {
  67. ColorsOptions []string `json:"colorsOptions"`
  68. LineOptions LineOptions `json:"lineOptions"`
  69. LegendOptions interface{} `json:"legendOptions"`
  70. TitleOptions interface{} `json:"titleOptions"`
  71. MarkerOptions interface{} `json:"markerOptions"`
  72. XAxisOptions interface{} `json:"xAxisOptions"`
  73. YAxisOptions interface{} `json:"yAxisOptions"`
  74. DrawOption interface{} `json:"drawOption"`
  75. LineOptionList []LineStyleOptions `json:"lineOptionList"`
  76. }
  77. type NewChartOptions struct {
  78. OldChartOptions
  79. LineOptionList []NewLineOptions `json:"lineOptionList"`
  80. }
  81. type NewLineOptions struct {
  82. LineOptions
  83. Color string `json:"color"`
  84. DataMark string `json:"dataMark"`
  85. MarkType string `json:"markType"`
  86. MarkSize int `json:"markSize"`
  87. MarkColor string `json:"markColor"`
  88. }
  89. type LineStyleOptions struct {
  90. DashStyle string `json:"dashStyle"`
  91. Color string `json:"color"`
  92. LineWidth float64 `json:"lineWidth"`
  93. LineType string `json:"lineType"`
  94. Radius int `json:"radius"`
  95. DataMark string `json:"dataMark"`
  96. MarkType string `json:"markType"`
  97. MarkSize int `json:"markSize"`
  98. MarkColor string `json:"markColor"`
  99. }