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 14821482 ]
14831483 }
14841484 ],
1485+ "com.mendix.widget.native.barchart.BarChart" : [
1486+ {
1487+ "name" : " Chart size" ,
1488+ "type" : " Dropdown" ,
1489+ "description" : " Size of the chart." ,
1490+ "options" : [
1491+ {
1492+ "name" : " Square" ,
1493+ "class" : " barChartSquare"
1494+ },
1495+ {
1496+ "name" : " Maximum space" ,
1497+ "class" : " barChartMaxSpace"
1498+ }
1499+ ]
1500+ }
1501+ ],
14851502 "com.mendix.widget.native.progressbar.ProgressBar" : [
14861503 {
14871504 "name" : " Progress bar style" ,
Original file line number Diff line number Diff line change 1+ export const barChartSquare = {
2+ chart : {
3+ aspectRatio : 1
4+ }
5+ } ;
6+ export const barChartMaxSpace = {
7+ chart : {
8+ flex : 1 ,
9+ aspectRatio : undefined
10+ }
11+ } ;
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export * from "./core/widgets/layoutgrid";
3232export * from "./core/widgets/linechart" ;
3333export * from "./core/helpers/linechart" ;
3434export * from "./core/widgets/barchart" ;
35+ export * from "./core/helpers/barchart" ;
3536export * from "./core/widgets/listviews" ;
3637export * from "./core/helpers/listviews" ;
3738export * from "./core/widgets/listviewswipe" ;
Original file line number Diff line number Diff line change 1+ export const barChartSquare = {
2+ chart : {
3+ aspectRatio : 1
4+ }
5+ } ;
6+
7+ export const barChartMaxSpace = {
8+ chart : {
9+ flex : 1 ,
10+ aspectRatio : undefined
11+ }
12+ } ;
Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ export * from "./core/widgets/layoutgrid";
3232export * from "./core/widgets/linechart" ;
3333export * from "./core/helpers/linechart" ;
3434export * from "./core/widgets/barchart" ;
35+ export * from "./core/helpers/barchart" ;
3536export * from "./core/widgets/listviews" ;
3637export * from "./core/helpers/listviews" ;
3738export * from "./core/widgets/listviewswipe" ;
You can’t perform that action at this time.
0 commit comments