Skip to content

Commit e267a52

Browse files
Fix Label other is not visible on PIE chart #900
1 parent 53702dc commit e267a52

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

classes/Visualizer/Module/Chart.php

+6
Original file line numberDiff line numberDiff line change
@@ -737,6 +737,12 @@ private function _handleDataAndSettingsPage() {
737737
$title = $this->_chart->ID;
738738
}
739739
$settings['internal_title'] = $title;
740+
$settings_label = $settings['pieResidueSliceLabel'];
741+
if ( empty( $settings_label ) ) {
742+
$settings['pieResidueSliceLabel'] = esc_html__( 'Other', 'visualizer' );
743+
} else {
744+
$settings['pieResidueSliceLabel'] = $settings_label;
745+
}
740746
update_post_meta( $this->_chart->ID, Visualizer_Plugin::CF_SETTINGS, $settings );
741747
}
742748
$render = new Visualizer_Render_Page_Send();

0 commit comments

Comments
 (0)