Amchart:仅显示特定系列的图例
Amchart : show legends for specific series only
我有一个混合了柱形图和折线图的图表。我只想显示柱形图的图例。
我的完整代码可以在这里找到:https://codepen.io/European-DataLab/pen/wVJKrN?editors=0010
这是图例的代码:
// Legend settings
series.name = "Période référence";
series2.name = "Cotisation minimale";
chart.legend = new am4charts.Legend();
chart.legend.position = "top";
chart.legend.align = "center";
在我的示例中,显示了两条线的图例。这是我的输出:
但是,我想要这样的输出:
可能正在将 hiddenInLegend 属性 设置为 true
series.hiddenInLegend = true;
这应该按照下面的文档工作
https://www.amcharts.com/docs/v4/reference/series/#hiddenInLegend_property
我有一个混合了柱形图和折线图的图表。我只想显示柱形图的图例。
我的完整代码可以在这里找到:https://codepen.io/European-DataLab/pen/wVJKrN?editors=0010
这是图例的代码:
// Legend settings
series.name = "Période référence";
series2.name = "Cotisation minimale";
chart.legend = new am4charts.Legend();
chart.legend.position = "top";
chart.legend.align = "center";
在我的示例中,显示了两条线的图例。这是我的输出:
但是,我想要这样的输出:
可能正在将 hiddenInLegend 属性 设置为 true
series.hiddenInLegend = true;
这应该按照下面的文档工作
https://www.amcharts.com/docs/v4/reference/series/#hiddenInLegend_property