File tree Expand file tree Collapse file tree 1 file changed +28
-17
lines changed Expand file tree Collapse file tree 1 file changed +28
-17
lines changed Original file line number Diff line number Diff line change @@ -2088,6 +2088,24 @@ declare module 'vue-data-ui' {
2088
2088
dataset : VueUiHeatmapDatasetItem [ ]
2089
2089
} > ;
2090
2090
2091
+ export type VueUiXyHighlightArea = {
2092
+ show ?: boolean ;
2093
+ from ?: number ;
2094
+ to ?: number ;
2095
+ color ?: string ;
2096
+ opacity ?: number ;
2097
+ caption ?: {
2098
+ text ?: string ;
2099
+ fontSize ?: number ;
2100
+ color ?: string ;
2101
+ bold ?: boolean ;
2102
+ offsetY ?: number ;
2103
+ width ?: "auto" | number ;
2104
+ padding ?: number ;
2105
+ textAlign ?: TextAlign ;
2106
+ } ;
2107
+ }
2108
+
2091
2109
export type VueUiXyConfig = {
2092
2110
responsive ?: boolean ;
2093
2111
theme ?: Theme ;
@@ -2118,27 +2136,20 @@ declare module 'vue-data-ui' {
2118
2136
color ?: string ;
2119
2137
} ;
2120
2138
} ;
2121
- highlightArea ?: {
2122
- show ?: boolean ;
2123
- from ?: number ;
2124
- to ?: number ;
2125
- color ?: string ;
2126
- opacity ?: number ;
2127
- caption ?: {
2128
- text ?: string ;
2129
- fontSize ?: number ;
2130
- color ?: string ;
2131
- bold ?: boolean ;
2132
- offsetY ?: number ;
2133
- width ?: "auto" | number ;
2134
- padding ?: number ;
2135
- textAlign ?: TextAlign ;
2136
- } ;
2137
- } ;
2139
+ highlightArea ?: VueUiXyHighlightArea | VueUiXyHighlightArea [ ] ;
2138
2140
grid ?: {
2139
2141
stroke ?: string ;
2140
2142
showHorizontalLines ?: boolean ;
2141
2143
showVerticalLines ?: boolean ;
2144
+ position ?: 'middle' | 'start' ;
2145
+ frame : {
2146
+ show ?: boolean ;
2147
+ stroke ?: string ;
2148
+ stokeWidth ?: number ;
2149
+ strokeLinecap ?: "round" | "butt" | "square" ,
2150
+ strokeLinejoin ?: "arcs" | "bevel" | "miter" | "miter-clip" | "round" ,
2151
+ strokeDasharray ?: number ;
2152
+ } ;
2142
2153
labels ?: {
2143
2154
color ?: string ;
2144
2155
show ?: boolean ;
You can’t perform that action at this time.
0 commit comments