point = parentElement.selectAll('.point').data(function(d) {
            return d.values;
        }).enter().append('path').attr('class', 'point').attr('opacity', function(d) {
            return d.opacity || conf.opacity;
        }).attr('d', d3.svg.symbol().type(conf.glyph.shape).size(conf.glyph.size)).attr('transform', (function(_this) {