File tree Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Expand file tree Collapse file tree 1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,28 @@ const StyleNotesPanel = (props, {localize: _}) => (
24
24
< Numeric label = { _ ( 'Font Size' ) } attr = "font.size" units = "px" />
25
25
< ColorPicker label = { _ ( 'Font Color' ) } attr = "font.color" />
26
26
< Numeric label = { _ ( 'Angle' ) } attr = "textangle" units = "°" />
27
+ < Dropdown
28
+ label = { _ ( 'Horizontal Alignment' ) }
29
+ clearable = { false }
30
+ attr = "align"
31
+ options = { [
32
+ { label : _ ( 'Left' ) , value : 'left' } ,
33
+ { label : _ ( 'Center' ) , value : 'center' } ,
34
+ { label : _ ( 'Right' ) , value : 'right' } ,
35
+ ] }
36
+ />
37
+ < Dropdown
38
+ label = { _ ( 'Vertical Alignment' ) }
39
+ clearable = { false }
40
+ attr = "valign"
41
+ options = { [
42
+ { label : _ ( 'Left' ) , value : 'left' } ,
43
+ { label : _ ( 'Center' ) , value : 'center' } ,
44
+ { label : _ ( 'Right' ) , value : 'right' } ,
45
+ ] }
46
+ />
27
47
</ PlotlySection >
48
+
28
49
< PlotlySection name = { _ ( 'Arrow' ) } >
29
50
< Radio
30
51
attr = "showarrow"
You can’t perform that action at this time.
0 commit comments