我正在做一个 rails 应用程序,并且能够让chartkick工作,但自定义它有点让人头疼。我正在尝试使用 Google 图表 API 自定义工具提示,但我似乎无法弄清楚。我只想能够更改文本"Value"。
有人能把我引向正确的方向吗?
这是我的代码:
<%=
column_chart [
["Strongly Disagree", p[1]],
["Disagree", p[2]],
["Neutral", p[3]],
["Agree", p[4]],
["Strongly Agree", p[5]]
],
height: "220px",
library: {
width: 665,
fontName: "Helvetica Neue",
colors: ["#29abe2"],
tooltip: {
textStyle: {
color: "#333333"
}
},
bar: {
groupWidth: "50%"
},
vAxis: {
title: "Everyone",
titleTextStyle: {
italic: false,
color: '#777'
},
gridlines: {
color: "#eeeeee"
},
viewWindow: {
max: m
}
}
}
%>