Skip to content

Commit e99faa5

Browse files
change definition of gridline.count
1 parent 7ed3d07 commit e99faa5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

classes/Visualizer/Render/Sidebar/Graph.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ protected function _renderHorizontalAxisSettings() {
196196
esc_html__( 'Count', 'visualizer' ),
197197
'hAxis[gridlines][count]',
198198
isset( $this->hAxis['gridlines']['count'] ) ? $this->hAxis['gridlines']['count'] : '',
199-
esc_html__( 'The number of vertical gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines.', 'visualizer' ),
199+
esc_html__( 'The approximate number of horizontal gridlines inside the chart area. You can specify a value of 1 to only draw one gridline, 0 to draw no gridlines or -1 to automatically compute the number of gridlines. Any other number will be used to compute the minSpacing between gridlines.', 'visualizer' ),
200200
5
201201
);
202202

@@ -308,7 +308,7 @@ protected function _renderVerticalAxisSettings() {
308308
esc_html__( 'Count', 'visualizer' ),
309309
'vAxis[gridlines][count]',
310310
isset( $this->vAxis['gridlines']['count'] ) ? $this->vAxis['gridlines']['count'] : '',
311-
esc_html__( 'The number of horizontal gridlines inside the chart area. Minimum value is 2. Specify -1 to automatically compute the number of gridlines.', 'visualizer' ),
311+
esc_html__( 'The approximate number of vertical gridlines inside the chart area. You can specify a value of 1 to only draw one gridline, 0 to draw no gridlines or -1 to automatically compute the number of gridlines. Any other number will be used to compute the minSpacing between gridlines.', 'visualizer' ),
312312
5
313313
);
314314

0 commit comments

Comments
 (0)