Skip to content

Commit 48a9fbb

Browse files
Not possible to change column settings of the last column in table chart
1 parent fbdc746 commit 48a9fbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

classes/Visualizer/Render/Sidebar/Type/DataTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ protected function _renderTableSettings() {
364364
*/
365365
protected function _renderColumnSettings() {
366366
self::_renderGroupStart( esc_html__( 'Column Settings', 'visualizer' ) );
367-
for ( $i = 0, $cnt = count( $this->__series ) - 1; $i < $cnt; $i++ ) {
367+
for ( $i = 0, $cnt = count( $this->__series ); $i < $cnt; $i++ ) {
368368
if ( ! empty( $this->__series[ $i ]['label'] ) ) {
369369
self::_renderSectionStart( esc_html( $this->__series[ $i ]['label'] ), false );
370370
$this->_renderFormatField( $i );

0 commit comments

Comments
 (0)