File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -149,6 +149,31 @@ protected function _renderHorizontalAxisGeneralSettings() {
149
149
esc_html__ ( 'The title of the horizontal axis. ' , 'visualizer ' )
150
150
);
151
151
152
+ self ::_renderSelectItem (
153
+ esc_html__ ( 'Slanted Text ' , 'visualizer ' ),
154
+ 'hAxis[slantedText] ' ,
155
+ isset ( $ this ->hAxis ['slantedText ' ] ) ? $ this ->hAxis ['slantedText ' ] : false ,
156
+ array (
157
+ false => 'False ' ,
158
+ true => 'True ' ,
159
+ ),
160
+ '' ,
161
+ false
162
+ );
163
+
164
+ self ::_renderTextItem (
165
+ esc_html__ ( 'Slanted Text Angle ' , 'visualizer ' ),
166
+ 'hAxis[slantedTextAngle] ' ,
167
+ isset ( $ this ->hAxis ['slantedTextAngle ' ] ) ? $ this ->hAxis ['slantedTextAngle ' ] : 45 ,
168
+ '' ,
169
+ 45 ,
170
+ 'number ' ,
171
+ array (
172
+ 'min ' => 1 ,
173
+ 'step ' => 15 ,
174
+ )
175
+ );
176
+
152
177
self ::_renderSelectItem (
153
178
esc_html__ ( 'Text Position ' , 'visualizer ' ),
154
179
'hAxis[textPosition] ' ,
You can’t perform that action at this time.
0 commit comments