凹坑d3图,值的平均值,快速命令修复

时间:2015-10-12 23:17:50

标签: d3.js dimple.js

想要制作具有HR和平均值的平均值的情节。在文档中查找,但似乎我无法让普通命令工作:(

有人能发现我的愚蠢错误吗?

var svg = dimple.newSvg("#chartContainer", 590, 400);
  d3.tsv("bbd3.tsv", function (data) {
    var myChart = new dimple.chart(svg, data);
    myChart.setBounds(75, 30, 490, 330)
    myChart.addMeasureAxis("x", "HR");
    myChart.addMeasureAxis("y", "avg");
    myChart.aggregate = dimple.aggregateMethod.avg;
    myChart.addSeries( ["handedness"], dimple.plot.bubble);
    myChart.addLegend(180, 10, 360, 20, "right");
    myChart.draw();

1 个答案:

答案 0 :(得分:0)

聚合适用于系列而非图表。所以你可以像这样重写:

var mySeries = myChart.addSeries( ["handedness"], dimple.plot.bubble);
mySeries.aggregate = dimple.aggregateMethod.avg;