gpt4 book ai didi

javascript - Chart.js 更改图例切换行为

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:52:29 25 4
gpt4 key购买 nike

我有一个来自 chart.js 的雷达图。目前,它加载了所有效果很好的数据,支持图例的行为是通过单击图例标签来关闭与图例相关的数据。我希望能够单击图例标签,然后关闭所有其他标签,并可能引入“全部”选项?这对 chart.js 可行吗?

这是我的图表现在的样子:

var chartata = { 
labels: [
"Strategic Development and Ownership",
"Driving change through others",
"Exec Disposition",
"Commercial Acumen",
"Develops High Performance Teams",
"Innovation and risk taking",
"Global Leadership",
"Industry Leader"
]};

var ctx = $("#allRadarData");

var config = {
type: 'radar',
data: chartata,
animationEasing: 'linear',
options: {
legend: {
fontSize: 10,
display: true,
itemWidth: 150,
position: 'bottom',
fullWidth: true,
labels: {
fontColor: 'rgb(0,0,0)',
boxWidth: 10,
padding: 20
},
},
tooltips: {
enabled: true
},
scale: {
ticks: {
fontSize: 15,
beginAtZero: true,
stepSize: 1,
max: 5
}
}

},
},

LineGraph = new Chart(ctx, config);

var colorArray = [

["#f44336", false],
["#E91E63", false],
["#9C27B0", false],
["#673AB7", false],
['#3F51B5', false],
["#607D8B", false]
];


for (var i in data) {
tmpscore=[];
tmpscore.push(data[i].score1);
tmpscore.push(data[i].score2);
tmpscore.push(data[i].score3);
tmpscore.push(data[i].score4);
tmpscore.push(data[i].score5);
tmpscore.push(data[i].score6);
tmpscore.push(data[i].score7);
tmpscore.push(data[i].score8);

var color, done = false;
while (!done) {
var test = colorArray[parseInt(Math.random() * 10)];
if (!test[1]) {
color = test[0];
colorArray[colorArray.indexOf(test)][1] = true;
done = !done;
}
}


newDataset = {
label: data[i].firstName+' '+data[i].lastName,
borderColor: color,
backgroundColor: "rgba(0,0,0,0)",
data: tmpscore,
};

config.data.datasets.push(newDataset);

}

LineGraph.update();
},
});

});

最佳答案

要反转图例标签点击的行为方式,您可以使用图例 onClick 选项来实现新的点击逻辑。下面是一个示例,它将为您提供所需的行为。请注意,在此实现中,如果您单击一个已隐藏的标签,它将取消隐藏并隐藏所有其他标签。

function(e, legendItem) {
var index = legendItem.datasetIndex;
var ci = this.chart;
var alreadyHidden = (ci.getDatasetMeta(index).hidden === null) ? false : ci.getDatasetMeta(index).hidden;

ci.data.datasets.forEach(function(e, i) {
var meta = ci.getDatasetMeta(i);

if (i !== index) {
if (!alreadyHidden) {
meta.hidden = meta.hidden === null ? !meta.hidden : null;
} else if (meta.hidden === null) {
meta.hidden = true;
}
} else if (i === index) {
meta.hidden = null;
}
});

ci.update();
};

这是一个working example

但是,如果您想要一个更复杂的逻辑来取消隐藏当前至少一个其他标签当前可见时隐藏的标签,那么您可以使用以下实现。

function(e, legendItem) {
var index = legendItem.datasetIndex;
var ci = this.chart;
var alreadyHidden = (ci.getDatasetMeta(index).hidden === null) ? false : ci.getDatasetMeta(index).hidden;
var anyOthersAlreadyHidden = false;
var allOthersHidden = true;

// figure out the current state of the labels
ci.data.datasets.forEach(function(e, i) {
var meta = ci.getDatasetMeta(i);

if (i !== index) {
if (meta.hidden) {
anyOthersAlreadyHidden = true;
} else {
allOthersHidden = false;
}
}
});

// if the label we clicked is already hidden
// then we now want to unhide (with any others already unhidden)
if (alreadyHidden) {
ci.getDatasetMeta(index).hidden = null;
} else {
// otherwise, lets figure out how to toggle visibility based upon the current state
ci.data.datasets.forEach(function(e, i) {
var meta = ci.getDatasetMeta(i);

if (i !== index) {
// handles logic when we click on visible hidden label and there is currently at least
// one other label that is visible and at least one other label already hidden
// (we want to keep those already hidden still hidden)
if (anyOthersAlreadyHidden && !allOthersHidden) {
meta.hidden = true;
} else {
// toggle visibility
meta.hidden = meta.hidden === null ? !meta.hidden : null;
}
} else {
meta.hidden = null;
}
});
}

ci.update();
}

这是一个working example对于这个替代实现也是如此。

要在您的特定代码中使用它,只需使用 onClick 属性将它放在图表的图例配置中即可。

var config = { 
type: 'radar',
data: chartata,
animationEasing: 'linear',
options: {
legend: {
fontSize: 10,
display: true,
itemWidth: 150,
position: 'bottom',
fullWidth: true,
labels: {
fontColor: 'rgb(0,0,0)',
boxWidth: 10,
padding: 20
},
onClick: function(e, legendItem) {
var index = legendItem.datasetIndex;
var ci = this.chart;
var alreadyHidden = (ci.getDatasetMeta(index).hidden === null) ? false : ci.getDatasetMeta(index).hidden;

ci.data.datasets.forEach(function(e, i) {
var meta = ci.getDatasetMeta(i);

if (i !== index) {
if (!alreadyHidden) {
meta.hidden = meta.hidden === null ? !meta.hidden : null;
} else if (meta.hidden === null) {
meta.hidden = true;
}
} else if (i === index) {
meta.hidden = null;
}
});

ci.update();
},
},
tooltips: {
enabled: true
},
scale: {
ticks: {
fontSize: 15,
beginAtZero: true,
stepSize: 1,
max: 5
}
}
},
},

不清楚您希望“全部”选项具有什么行为,但您可能能够使用 legend.labels.generateLabels 选项来欺骗 Chart .js 添加“全部”标签(您必须修改上面的 onClick 逻辑来处理该想法。

但是,我认为更好的解决方案是在 chart.js Canvas 之外实现您自己的链接或按钮,以显示/隐藏所有数据集。查看Chart.js radar sample page查看它们如何将按钮与图表操作绑定(bind)。

关于javascript - Chart.js 更改图例切换行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42555513/

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