为什么 Google 图表不显示轴数据值?
如果您访问下面的 URL,您将看到图表已正确生成,但 x 轴和 y 轴上没有标签来指示数据值:
谁能弄清楚如何显示 x 轴和 y 轴数据值?
If you visit the URL below you will see that the graph is being generated properly, but that there are not labels along the x and y axis to indicate the data values:
Can anyone figure out how to get the x and y axis data values to show up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 API,您可以通过 chxX 参数执行此操作:
http://code.google.com/apis/chart/image/docs/gallery/line_charts.html#gcharts_axis_styles_labels
chx1:将自定义值作为标签
chxs 和 chxtc:指定自定义轴标签和数字轴标签的颜色、大小、对齐方式和其他属性
。如果您无法弄清楚,请告诉我。
According to the API, you can do this through the chxX parameters:
http://code.google.com/apis/chart/image/docs/gallery/line_charts.html#gcharts_axis_styles_labels
chx1: make custom values as labels
chxs and chxtc: to specify color, size, alignment, and other properties of both custom and numeric axis labels
Let me know if you can't figure it out.