0

我的网站中有一个个人资料页面,我想要一个空心饼图,如下面的链接所示,我想通过它显示个人资料的完成百分比。百分比将显示在中心,饼图将只有 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>

但我得到的是一个完整的饼图而不是一个空心饼图,所以任何人都可以帮助我创建一个空心饼图。我有一个算法来计算数据,所以你可以使用虚拟数据。

欢迎任何形式的帮助或指导。

谢谢...

4

2 回答 2

0

也许您可以尝试将参数 pieHole 添加到您的选项对象中,如下所述:https ://developers.google.com/chart/interactive/docs/gallery/piechart#donut

于 2013-08-20T10:44:12.247 回答
0

这是我的问题的答案,包括我正在使用图像 URL 来获取图像并在我的代码中的“img”标签中使用该图像。

访问:https ://chart.googleapis.com/chart?cht=pc&chco=FFFFFF,FFFFFF,FFFFFF,FFFFFF,74D3EF|EDEDED&chd=t:-1|-1|-1|-1|52,48&chs=122x122&chp= 4.7

你会得到我想要的输出,你可以玩弄 URL,老实说,这是一个 hack,而不是一个合适的解决方案,因为谷歌没有提供 pie hole 属性在 URL 中使用

欢迎提出任何问题。

谢谢你。

于 2013-08-27T15:08:07.347 回答