gpt4 book ai didi

javascript - 避免重复的图例

转载 作者:行者123 更新时间:2023-12-03 10:07:56 24 4
gpt4 key购买 nike

我有以下实现。有多个对象(数据和图例)被推送到要绘制的图表中。想象一下,很少有对象的图例信息是相同的,当我运行代码时,图表上会显示多个相同的图例信息。

我该如何处理这些重复的图例信息?

for (i = 0; i < dataSeriesBit.length; i++) {
for (j = 0; j < self.colorMap.length; j++) {
var d = dataSeries[i].data.filter(function (x) { return x.color == self.colorMap[j] });
an.push({ data: d, name:"Size:"+d[0].n.toString()});
}
}
chart.options.series = an;

最佳答案

每个系列都有一个visibleInLegend 属性,您可以将其设置为true 或false。您还可以隐藏特定系列的工具提示:

series: [{
name: "FieldName",
visibleInLegend: false,
tooltip: {
visible: false
}
}]

Example

关于javascript - 避免重复的图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30280714/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com