2010-10-25 41 views
2
var vis = new pv.Panel().canvas('grphLangSpeakers').height(langCount*(barWidth+barGap)).width(canvasWidth) 
    .add(pv.Bar) 
    .data(popCountArray) 
    .bottom(0).width(function(d){ return d}) 
    .height(barWidth) 
    .top(function() {return this.index * (barGap+barWidth)}); 

vis.render(); 

我使用上述代码使用Protovis生成条形图。如何将此图表更改为对数比例?使用Protovis的对数条形图

回答