If I run this code below in jqplot, I get all the lines (series) presented on the graph:
series: [ {label:'qqq', color:'#CD0000',show:true}, {label:'www', color:'#FFAA00',show:true}, {label:'eee', color:'#9CCB19',show:true}, {label:'ddd', color:'#3299CC',show:true}, {label:'ccc', color:'#871F78',show:true}, {label:'ggg', color:'#BF5FFF',show:true} ],
but if I run this code below to show only one series on the chart, which is beautiful, and the rest are crossed out, but if I want to turn them on again by turning them off, this no longer works:
series: [ {label:'qqq', color:'#CD0000',show:true}, {label:'www', color:'#FFAA00',show:false}, {label:'eee', color:'#9CCB19',show:false}, {label:'ddd', color:'#3299CC',show:false}, {label:'ccc', color:'#871F78',show:false}, {label:'ggg', color:'#BF5FFF',show:false} ],
Can anyone help?