label: getX()

in widgets/distribution-reports/src/app/nv-flex-pie-chart.js [291:315]


            label: getX(d.data),
            value: getY(d.data),
            point: d.data,
            index: i,
            pos: d3.event,
            id: id
          });
          d3.event.stopPropagation();
        });

      slices
        .attr('fill', function(d,i) { return color(d, i); })
        .attr('stroke', function(d,i) { return color(d, i); });

      var paths = ae.append('path')
        .each(function(d) { this._current = d; });
      //.attr('d', arc);

      slices.select('path')
        .transition()
        .attr('d', arc)
        .attrTween('d', utils.arcTween);

      if (showLabels) {
        pieLabels.enter().append("g").classed("nv-label", true).each(function (d, i) {