这是它的添加方式:
chart.renderer.path(['M',1200,10,'V',1500,0]) .attr({ 'stroke-width': 2,stroke: 'red' }) .add();
但是如何删除呢?
var x = someValue; chart.renderer.path(['M',x,0]) .attr({ 'stroke-width': 2,stroke: 'red' }) .add();
解决方法
更新
function(chart) { // on complete chart.renderer.path(['M','L',100,200,50,300,100]) .attr({ 'stroke-width': 2,stroke: 'red' }) .add(); $(":button").click(function(){ $('path[d="M 0 0 L 100 100 200 50 300 100"]').remove() ; }); });
按ID删除路径
function(chart) { // on complete chart.renderer.path(['M',stroke: 'red',id :'myPath' }) .add(); $(":button").click(function(){ $("#myPath").remove() ; }); });