Jquery饼图与内圈

时间:2013-12-12 07:30:22

标签: javascript jquery charts

对于一个项目,我需要实现一个带有两个圆圈的图表。它需要看起来像这样:

enter image description here

是否有支持此功能的Jquery解决方案?我已经尝试过使用Jqplot但是使用该插件我无法成功创建这样的东西。我试过这段代码:

// Create chart
var plot1 = $.jqplot('pie_chart', [s2,s1], {
seriesDefaults: {
  renderer:$.jqplot.DonutRenderer,
  rendererOptions:{
    startAngle: -90,
    showDataLabels: true,               
    dataLabels: 'value',    
    innerDiameter :0,
    padding:5,
    highlightMouseOver:false
  }
}
});

//Theming based in the rendered module items in the HTML
temp = {
seriesStyles: {seriesColors: array2},
    grid: {
        backgroundColor: 'rgba(0,0,0,0)',
        borderWidth: 0,
        shadow: false
    }
};        

plot1.themeEngine.newTheme('uma', temp);
plot1.activateTheme('uma');

但是内圈和外圈的颜色是相同的,并创建这样的东西:

enter image description here

样式的设置适用于内圈和外圈。在我的情况下,我需要给外圈一个不同的风格。

我可以使用此插件,还是需要使用其他Jquery插件来实现我的图表?

1 个答案:

答案 0 :(得分:0)

我找到了一个适用于d3.js(http://d3js.org/)的解决方案:

http://bl.ocks.org/mbostock/4063423

对我来说很好!目前看起来像这样:

enter image description here