File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed
Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ export const com_mendix_widget_native_linechart_LineChart = {
3131 - backgroundColor (string)
3232 - dashArray (string)
3333 - lineColor (string)
34+ - lineWidth (number)
3435 - padding (number)
3536 - paddingBottom (number)
3637 - paddingHorizontal (number)
3738 - paddingLeft (number)
3839 - paddingRight (number)
3940 - paddingTop (number)
4041 - paddingVertical (number)
41- - width (number)
4242 */
4343 lineColor : border . color ,
4444 paddingBottom : 32 ,
@@ -56,7 +56,7 @@ export const com_mendix_widget_native_linechart_LineChart = {
5656 - fontStyle ("normal" or "italic")
5757 - fontWeight ("normal" or "bold" or "100" or "200" or "300" or "400" or "500" or "600" or "700" or "800" or "900")
5858 - lineColor (string)
59- - width (number)
59+ - lineWidth (number)
6060 */
6161 color : font . color ,
6262 fontFamily : font . family ,
@@ -88,7 +88,7 @@ export const com_mendix_widget_native_linechart_LineChart = {
8888 - fontStyle ("normal" or "italic")
8989 - fontWeight ("normal" or "bold" or "100" or "200" or "300" or "400" or "500" or "600" or "700" or "800" or "900")
9090 - lineColor (string)
91- - width (number)
91+ - lineWidth (number)
9292 */
9393 color : font . color ,
9494 fontFamily : font . family ,
@@ -125,7 +125,7 @@ export const com_mendix_widget_native_linechart_LineChart = {
125125 - dashArray (string)
126126 - ending ("flat" or "round")
127127 - lineColor (string)
128- - width (number)
128+ - lineWidth (number)
129129 */
130130 } ,
131131 markers : {
Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ export const com_mendix_widget_native_linechart_LineChart: LineChartType = {
3333 - backgroundColor (string)
3434 - dashArray (string)
3535 - lineColor (string)
36+ - lineWidth (number)
3637 - padding (number)
3738 - paddingBottom (number)
3839 - paddingHorizontal (number)
3940 - paddingLeft (number)
4041 - paddingRight (number)
4142 - paddingTop (number)
4243 - paddingVertical (number)
43- - width (number)
4444 */
4545 lineColor : border . color ,
4646 paddingBottom : 32 ,
@@ -58,7 +58,7 @@ export const com_mendix_widget_native_linechart_LineChart: LineChartType = {
5858 - fontStyle ("normal" or "italic")
5959 - fontWeight ("normal" or "bold" or "100" or "200" or "300" or "400" or "500" or "600" or "700" or "800" or "900")
6060 - lineColor (string)
61- - width (number)
61+ - lineWidth (number)
6262 */
6363 color : font . color ,
6464 fontFamily : font . family ,
@@ -90,7 +90,7 @@ export const com_mendix_widget_native_linechart_LineChart: LineChartType = {
9090 - fontStyle ("normal" or "italic")
9191 - fontWeight ("normal" or "bold" or "100" or "200" or "300" or "400" or "500" or "600" or "700" or "800" or "900")
9292 - lineColor (string)
93- - width (number)
93+ - lineWidth (number)
9494 */
9595 color : font . color ,
9696 fontFamily : font . family ,
@@ -127,7 +127,7 @@ export const com_mendix_widget_native_linechart_LineChart: LineChartType = {
127127 - dashArray (string)
128128 - ending ("flat" or "round")
129129 - lineColor (string)
130- - width (number)
130+ - lineWidth (number)
131131 */
132132 } ,
133133 markers : {
Original file line number Diff line number Diff line change @@ -277,14 +277,14 @@ interface LineChartGridStyle {
277277 backgroundColor ?: string ;
278278 dashArray ?: string ;
279279 lineColor ?: string ;
280+ lineWidth ?: number ;
280281 padding ?: number ;
281282 paddingBottom ?: number ;
282283 paddingHorizontal ?: number ;
283284 paddingLeft ?: number ;
284285 paddingRight ?: number ;
285286 paddingTop ?: number ;
286287 paddingVertical ?: number ;
287- width ?: number ;
288288}
289289
290290interface LineChartAxisStyle < T extends "X" | "Y" > {
@@ -295,7 +295,7 @@ interface LineChartAxisStyle<T extends "X" | "Y"> {
295295 fontStyle ?: "normal" | "italic" ;
296296 fontWeight ?: "normal" | "bold" | "100" | "200" | "300" | "400" | "500" | "600" | "700" | "800" | "900" ;
297297 lineColor ?: string ;
298- width ?: number ;
298+ lineWidth ?: number ;
299299 label ?: TextStyle & {
300300 relativePositionGrid ?: T extends "X" ? "bottom" | "right" : "top" | "left" ;
301301 } ;
@@ -306,7 +306,7 @@ interface LineChartLineStyle {
306306 dashArray ?: string ;
307307 ending ?: "flat" | "round" ;
308308 lineColor ?: string ;
309- width ?: number ;
309+ lineWidth ?: number ;
310310 } ;
311311 markers ?: {
312312 backgroundColor ?: string ;
You can’t perform that action at this time.
0 commit comments