我想在我的网页上生成漏斗图。我对所有图表使用Google Graph,但似乎不支持漏斗类型。
那么现在呢?您可以向我推荐任何适用于Google图表的非闪存替代品吗?
提前感谢您提出的所有建议!
干杯,
的Jakub
答案 0 :(得分:0)
我只是环顾四周,发现:
http://www.fusioncharts.com/demos/gallery/#funnel-chart
一个缺点是免费版本仅在Flash中呈现,付费版本为399美元的单一许可证!
免费图书馆http://www.jqplot.com/似乎处理JS中的漏斗。例如:
$(document).ready(function(){
s1 = [['Sony',7], ['Samsumg',13.3], ['LG',14.7], ['Vizio',5.2], ['Insignia', 1.2]];
plot4 = $.jqplot('chart4', [s1], {
seriesDefaults:{
renderer:$.jqplot.FunnelRenderer,
rendererOptions: {
showDataLabels: true,
dataLabels: ['47 years', '28 years', '22 years', '14 years', '7 years']
}
},
legend: {
show: true,
placement: 'outside'
}
});
});
其他人通过以条形图为中心,在Google图表中“破解”了一个“解决方案”:Centered bars on a Google Chart BarChart?