在c3js脊柱图上是否可以使用API隐藏线?我知道我可以使用散点图,但我必须使用spline来满足我的要求。
另外,将.c3-lines.c3-line的不透明度设置为0隐藏它,但我想知道我是否可以通过API实现它
答案 0 :(得分:0)
是的,您可以使用API隐藏它。见http://c3js.org/reference.html#api-hide。文档中的样本。
// data1 will be hidden. chart.hide('data1'); // data1 and data2 will be hidden. chart.hide(['data1', 'data2']); // all targets will be hidden. chart.hide(); // data1 will be hidden together with its legend. chart.hide('data1', {withLegend: true});