Display percentage in pie graph
add_filter(‘frm_google_chart’, ‘frm_pie_chart_tooltip_percentage’, 10, 2); function frm_pie_chart_tooltip_percentage($options, $atts){ if ( $atts[‘type’] == ‘pie’ ) { $options[‘tooltip’] = array(‘text’ => ‘percentage’); } return $options; }Continue reading