我有以下条形图,我正试图关闭悬停工具提示:
= bar_chart [["", current_admin.company.progress_to_target_this_month]], colors: [current_admin.company.progress_bar_colour]
在他们的主页上,我可以创建一个我已经完成的初始化文件:
配置/初始化/ chartkick.rb
Chartkick.options = {
height: '300px',
colors: ['#b00', '#666'],
discrete: true,
library: {
pointSize: 0,
vAxis: {
points: false,
legend: false,
discrete: true
},
hAxis: {
points: false,
legend: false,
discrete: true,
textPosition: 'none'
},
tooltips: {
enabled: false
}
},
options: {
tooltips: {
enabled: false
}
},
tooltips: {
enabled: false
}
}
关于vaxis和haxis的选项都有效,但我无法与工具提示工作有任何关系。我尝试了各种各样的插入工具提示:{enabled:false},我可以毫无兴趣地想到这一点。
如果有人有任何建议,将非常感谢
答案 0 :(得分:0)
截至2017年夏天,chartkick.js不支持自定义工具提示。关于GitHub存储库有两个未解决的问题:
答案 1 :(得分:0)
如果图表不需要任何其他指针事件,则只需为包含图表的pointer-events: none
设置div
。