| @@ -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,10 @@ | ||
| 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 | |