File tree Expand file tree Collapse file tree 4 files changed +15
-15
lines changed
docs/modules/ROOT/pages/user-guide/reports Expand file tree Collapse file tree 4 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -73,13 +73,13 @@ slice.
73
73
|Margin Left (px) |number |50 |The margin in pixels on the left side of
74
74
the visualization.
75
75
76
- |Margin Right (px) |number |24 |The margin in pixels on the right side
76
+ |Margin Right (px) |number |50 |The margin in pixels on the right side
77
77
of the visualization.
78
78
79
- |Margin Top (px) |number |24 |The margin in pixels on the top side of
79
+ |Margin Top (px) |number |50 |The margin in pixels on the top side of
80
80
the visualization.
81
81
82
- |Margin Bottom (px) |number |40 |The margin in pixels on the bottom side
82
+ |Margin Bottom (px) |number |50 |The margin in pixels on the bottom side
83
83
of the visualization.
84
84
85
85
|Hide Selections |on/off |off |If enabled, hides the property selector
Original file line number Diff line number Diff line change @@ -125,10 +125,10 @@ export const themeNivo = {
125
125
legend : { text : { fill : 'rgb(var(--palette-neutral-text-default))' } } ,
126
126
} ,
127
127
legends : {
128
- text : { fill : 'rgb(var(--palette-neutral-text-weak ))' } ,
129
- title : { text : { fill : 'rgb(var(--palette-neutral-text-weak ))' } } ,
130
- ticks : { text : { fill : 'rgb(var(--palette-neutral-text-weak ))' } } ,
131
- hidden : { text : { fill : 'rgb(var(--palette-neutral-text-weak ))' } } ,
128
+ text : { fill : 'rgb(var(--palette-neutral-text-default ))' } ,
129
+ title : { text : { fill : 'rgb(var(--palette-neutral-text-default ))' } } ,
130
+ ticks : { text : { fill : 'rgb(var(--palette-neutral-text-default ))' } } ,
131
+ hidden : { text : { fill : 'rgb(var(--palette-neutral-text-default ))' } } ,
132
132
} ,
133
133
markers : {
134
134
text : { fill : 'rgb(var(--palette-neutral-text-default))' } ,
Original file line number Diff line number Diff line change @@ -73,10 +73,10 @@ const NeoPieChart = (props: ChartProps) => {
73
73
const settings = props . settings ? props . settings : { } ;
74
74
const legendHeight = 20 ;
75
75
// TODO to retrieve all defaults from the ReportConfig.ts file instead of hardcoding them in the file
76
- const marginRight = settings . marginRight ? settings . marginRight : 24 ;
77
- const marginLeft = settings . marginLeft ? settings . marginLeft : 24 ;
78
- const marginTop = settings . marginTop ? settings . marginTop : 24 ;
79
- const marginBottom = settings . marginBottom ? settings . marginBottom : 40 ;
76
+ const marginRight = settings . marginRight ? settings . marginRight : 50 ;
77
+ const marginLeft = settings . marginLeft ? settings . marginLeft : 50 ;
78
+ const marginTop = settings . marginTop ? settings . marginTop : 50 ;
79
+ const marginBottom = settings . marginBottom ? settings . marginBottom : 50 ;
80
80
const sortByValue = settings . sortByValue ? settings . sortByValue : false ;
81
81
const enableArcLabels = settings . enableArcLabels !== undefined ? settings . enableArcLabels : true ;
82
82
const enableArcLinkLabels = settings . enableArcLinkLabels !== undefined ? settings . enableArcLinkLabels : true ;
Original file line number Diff line number Diff line change @@ -606,22 +606,22 @@ export const REPORT_TYPES = {
606
606
marginLeft : {
607
607
label : 'Margin Left (px)' ,
608
608
type : SELECTION_TYPES . NUMBER ,
609
- default : 24 ,
609
+ default : 50 ,
610
610
} ,
611
611
marginRight : {
612
612
label : 'Margin Right (px)' ,
613
613
type : SELECTION_TYPES . NUMBER ,
614
- default : 24 ,
614
+ default : 50 ,
615
615
} ,
616
616
marginTop : {
617
617
label : 'Margin Top (px)' ,
618
618
type : SELECTION_TYPES . NUMBER ,
619
- default : 24 ,
619
+ default : 50 ,
620
620
} ,
621
621
marginBottom : {
622
622
label : 'Margin Bottom (px)' ,
623
623
type : SELECTION_TYPES . NUMBER ,
624
- default : 40 ,
624
+ default : 50 ,
625
625
} ,
626
626
refreshButtonEnabled : {
627
627
label : 'Refreshable' ,
You can’t perform that action at this time.
0 commit comments