File tree Expand file tree Collapse file tree 5 files changed +42
-0
lines changed
Expand file tree Collapse file tree 5 files changed +42
-0
lines changed Original file line number Diff line number Diff line change 14121412 ]
14131413 }
14141414 ],
1415+ "com.mendix.widget.native.linechart.LineChart" : [
1416+ {
1417+ "name" : " Chart size" ,
1418+ "type" : " Dropdown" ,
1419+ "description" : " Size of the chart." ,
1420+ "options" : [
1421+ {
1422+ "name" : " Square" ,
1423+ "class" : " lineChartSquare"
1424+ },
1425+ {
1426+ "name" : " Maximum space" ,
1427+ "class" : " lineChartMaxSpace"
1428+ }
1429+ ]
1430+ }
1431+ ],
14151432 "com.mendix.widget.native.listviewswipe.ListViewSwipe" : [
14161433 {
14171434 "name" : " Panel size" ,
Original file line number Diff line number Diff line change 1+ export const lineChartSquare = {
2+ chart : {
3+ aspectRatio : 1
4+ }
5+ } ;
6+ export const lineChartMaxSpace = {
7+ chart : {
8+ flex : 1 ,
9+ aspectRatio : undefined
10+ }
11+ } ;
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export * from "./core/helpers/images";
3030export * from "./core/widgets/introscreen" ;
3131export * from "./core/widgets/layoutgrid" ;
3232export * from "./core/widgets/linechart" ;
33+ export * from "./core/helpers/linechart" ;
3334export * from "./core/widgets/listviews" ;
3435export * from "./core/helpers/listviews" ;
3536export * from "./core/widgets/listviewswipe" ;
Original file line number Diff line number Diff line change 1+ export const lineChartSquare = {
2+ chart : {
3+ aspectRatio : 1
4+ }
5+ } ;
6+
7+ export const lineChartMaxSpace = {
8+ chart : {
9+ flex : 1 ,
10+ aspectRatio : undefined
11+ }
12+ } ;
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ export * from "./core/helpers/images";
3030export * from "./core/widgets/introscreen" ;
3131export * from "./core/widgets/layoutgrid" ;
3232export * from "./core/widgets/linechart" ;
33+ export * from "./core/helpers/linechart" ;
3334export * from "./core/widgets/listviews" ;
3435export * from "./core/helpers/listviews" ;
3536export * from "./core/widgets/listviewswipe" ;
You can’t perform that action at this time.
0 commit comments