我的网站上有一个个人资料页面,我想要一个空心饼图,如下面的链接,我想通过它来显示完成的个人资料的百分比。百分比将显示在中心,饼图将只有两种颜色。
访问图片链接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>
但我得到的是一张完整的饼图,而不是空心饼图,所以任何人都可以帮我创建一个空心饼图。我有一个计算数据的算法,所以你可以使用虚拟数据。
欢迎任何形式的帮助或指导。
谢谢...
答案 0 :(得分:0)
也许您可以尝试将参数pieHole添加到您的选项对象中,如下所述:https://developers.google.com/chart/interactive/docs/gallery/piechart#donut
答案 1 :(得分:0)
以下是我的问题的答案,包括我使用图片网址获取图片并在我的代码中的'img'标记中使用该图片。
你会得到我想要的输出,你可以玩这个URL,说实话这是一个黑客而不是一个正确的解决方案,因为谷歌没有提供饼洞属性在网址中使用。
欢迎任何问题。
谢谢。