forio / contour

Apache License 2.0
120 stars 21 forks source link

line.marker.animationDelay has no effect #214

Closed mmrj closed 7 years ago

mmrj commented 9 years ago

with 0.9.117:

$(function () {
    var data = [{x: 0, y: 103},{x: 44, y: 103},{x: 154, y: 36},{x: 309, y: 150},{x: 376, y: 150},{x: 400, y: 171}];

    chart = new Contour({
        el: '.myChart',
        line: { 
            marker : { size: 10, animationDelay: 20000 },
            animationDirection: 'bottom-to-top'
        } 
      })
    .cartesian()
    .line(data)
    .render();
});

no change regardless of: value of animationDelay, value of animationDirection, whether or not we change data (chart.setData.render)

mmrj commented 9 years ago

removing src/documentation/config/config.line.marker.animationDelay.md manually -- won't show docs for this until this is fixed.