Home Forums Chart Support Remove all striplines by click Reply To: Remove all striplines by click

#28030

Only that work for me:

 var countstriplines = chart.axisX[0].stripLines.length;
        for(var i = 0; i < countstriplines; i++) {
            chart.axisX[0].stripLines[0].remove();   
            }
       });