我在Chart.js中有一个堆积的条形图,我对悬停交互感兴趣。
尤其是,当我将鼠标悬停在一个条形上时,我希望该特定的条形保持其颜色,而其他所有颜色都淡化为0.5不透明。
进行相反的操作很容易,我只在数据集中使用func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "TableviewCell", for: indexPath) as! TableviewCell
if indexPath.row == LastCount {
cell.separatorInset = UIEdgeInsets(top: 0, left: UIScreen.main.bounds.width*2, bottom: 1, right: -(UIScreen.main.bounds.width*3))
}
else
{
cell.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0)
}
return cell
}
属性,但这并不是我想要的。