我的网站中有一个个人资料页面,我想要一个空心饼图,如下面的链接所示,我想通过它显示个人资料的完成百分比。百分比将显示在中心,饼图将只有 2 种颜色。
访问图片链接http://www.telerik.com/ClientsFiles/392888_hollow.png
我做了什么,我使用了谷歌图表,代码是:
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.google.com/jsapi"></script>
<script type="text/javascript">
// Load the Visualization API and the piechart package.
google.load('visualization', '1.0', {'packages':['corechart']});
// Set a callback to run when the Google Visualization API is loaded.
google.setOnLoadCallback(drawChart);
// Callback that creates and populates a data table,
// instantiates the pie chart, passes in the data and
// draws it.
function drawChart() {
// Create the data table.
var data = new google.visualization.DataTable();
data.addColumn('string', 'Profile');
data.addColumn('number', 'Percentage');
data.addRows([
['Profile Complete', 3],
['Profile Incomplete', 1]
]);
// Set chart options
var options = {'title':'Profile Complete',
'width':400,
'height':300};
// Instantiate and draw our chart, passing in some options.
var chart = new google.visualization.PieChart(document.getElementById('chart_div'));
chart.draw(data, options);
}
</script>
<!--Div that will hold the pie chart-->
<div id="chart_div"></div>
但我得到的是一个完整的饼图而不是一个空心饼图,所以任何人都可以帮助我创建一个空心饼图。我有一个算法来计算数据,所以你可以使用虚拟数据。
欢迎任何形式的帮助或指导。
谢谢...