Google Line Charts - GA看起来很有感觉

时间:2015-06-19 07:45:37

标签: google-visualization

我正在尝试使用Google Chart lib重现某些Google Analitycs折线图样式。

GA

enter image description here

谷歌折线图:

enter image description here

我正在努力复制两件事:

  • 我找不到用背景颜色填充线下方区域的方法

  • 我没有找到如何使线上的点始终显示(目前,点击该线时我可以显示其中一个点)

1 个答案:

答案 0 :(得分:1)

他们使用的是面积图,而不是折线图。 https://developers.google.com/chart/interactive/docs/gallery/areachart

对于始终出现在该行上的点,请参阅点文档。 https://developers.google.com/chart/interactive/docs/points

就在我的脑海中,这里还有其他一些注意事项(所有这些设置的详细信息都显示在AreaChart文档页面的底部):

var options = {
  legend: {
    position: 'top',
    alignment: 'start'
  },
  vAxis: {
    textPosition: 'in'
  },
  focusTarget: 'category' // if multiple lines, data for all appear in tooltip
};