Skip to content

Commit 7ed3d07

Browse files
show the correct gridline
1 parent a8e84d5 commit 7ed3d07

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

classes/Visualizer/Render/Sidebar/Type/GoogleCharts/Bar.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function __construct( $data = array() ) {
4242
parent::__construct( $data );
4343

4444
// disable horizontal gridlines settings
45-
$this->_horizontalGridLines = false;
45+
$this->_verticalGridLines = false;
4646
}
4747

4848
/**

classes/Visualizer/Render/Sidebar/Type/GoogleCharts/Column.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function __construct( $data = array() ) {
4242
parent::__construct( $data );
4343

4444
// disable vertical gridlines settings
45-
$this->_verticalGridLines = false;
45+
$this->_horizontalGridLines = false;
4646
}
4747

4848
/**

0 commit comments

Comments
 (0)