| @@ -52,9 +52,9 @@ | ||
| 52 | 52 | ), |
| 53 | 53 | esc_html__( 'The type of the entity that receives focus on mouse hover. Also affects which entity is selected by mouse click.', 'visualizer' ) |
| 54 | 54 | ); |
| 55 | 55 | |
| 56 | - echo '<div class="viz-section-delimiter"></div>'; | |
| 56 | + echo '<div class="section-delimiter"></div>'; | |
| 57 | 57 | |
| 58 | 58 | self::_renderSelectItem( |
| 59 | 59 | esc_html__( 'Is Stacked', 'visualizer' ), |
| 60 | 60 | 'isStacked', |
| @@ -59,12 +59,12 @@ | ||
| 59 | 59 | esc_html__( 'Is Stacked', 'visualizer' ), |
| 60 | 60 | 'isStacked', |
| 61 | 61 | $this->isStacked, |
| 62 | 62 | $this->_yesno, |
| 63 | - esc_html__( 'When enabled, series elements are stacked.', 'visualizer' ) | |
| 63 | + esc_html__( 'If set to yes, series elements are stacked.', 'visualizer' ) | |
| 64 | 64 | ); |
| 65 | 65 | |
| 66 | - echo '<div class="viz-section-delimiter"></div>'; | |
| 66 | + echo '<div class="section-delimiter"></div>'; | |
| 67 | 67 | |
| 68 | 68 | self::_renderTextItem( |
| 69 | 69 | esc_html__( 'Bars Opacity', 'visualizer' ), |
| 70 | 70 | 'dataOpacity', |
| @@ -87,10 +87,10 @@ | ||
| 87 | 87 | protected function _renderVerticalAxisGeneralSettings() { |
| 88 | 88 | parent::_renderVerticalAxisGeneralSettings(); |
| 89 | 89 | self::_renderColorPickerItem( |
| 90 | 90 | esc_html__( 'Axis Text Color', 'visualizer' ), |
| 91 | - 'vAxis[textStyle]', | |
| 92 | - isset( $this->vAxis['textStyle'] ) ? $this->vAxis['textStyle'] : null, | |
| 91 | + 'hAxis[textStyle]', | |
| 92 | + isset( $this->hAxis['textStyle'] ) ? $this->hAxis['textStyle'] : null, | |
| 93 | 93 | '#000' |
| 94 | 94 | ); |
| 95 | 95 | } |
| 96 | 96 | |
| @@ -104,10 +104,11 @@ | ||
| 104 | 104 | protected function _renderHorizontalAxisGeneralSettings() { |
| 105 | 105 | parent::_renderHorizontalAxisGeneralSettings(); |
| 106 | 106 | self::_renderColorPickerItem( |
| 107 | 107 | esc_html__( 'Axis Text Color', 'visualizer' ), |
| 108 | - 'hAxis[textStyle]', | |
| 109 | - isset( $this->hAxis['textStyle'] ) ? $this->hAxis['textStyle'] : null, | |
| 108 | + 'vAxis[textStyle]', | |
| 109 | + isset( $this->vAxis['textStyle'] ) ? $this->vAxis['textStyle'] : null, | |
| 110 | 110 | '#000' |
| 111 | 111 | ); |
| 112 | 112 | } |
| 113 | + | |
| 113 | 114 | } |