Basic Example
add_filter(‘frm_graph_data’, ‘my_custom_graph_data’, 10, 2); function my_custom_graph_data( $data, $atts ) { if ( isset( $atts[‘title’] ) && $atts[‘title’] == ‘My graph’ ) { $data[] = array( ‘X-axis label’, 10, 20, 30 ); } return $data; }Continue reading