If I run this code below in jqplot I get all lines(series) rendered 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 graph which is fine and the others are crossed out, but if I want to enable them again by unticking them, this does not work anymore:
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 please?