Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

Circle Graph

Beautiful Circle Graph Shortcode

// Add Shortcode
function circlegraph_shortcode( $atts ) {

	// Attributes
	extract( shortcode_atts(
		array(
			'percent' => '0.0%',
		), $atts )
	);

	// Code
return '
<div style="text-align: center;">
<div class="circlegraph diagram" data-percent="' . $percent . '"></div>
</div>
';
}
add_shortcode( 'circlegraph', 'circlegraph_shortcode' );