下面的图表有很多数据,它不会显示我想要的 .

Chart detail

为了更好地显示它我在图表选项上使用了 width: chartData.getNumberOfRows() * 90 ,现在它看起来像这样:

Chart detail 2

请注意右侧溢出,以解决我使用过的问题

overflow-x: scroll; 
 overflow-y: hidden;

在图表的父元素上,包装div . 现在它看起来像这样:

Chart detail 3

但是当将鼠标悬停在图表中的点上时会出现问题:

Chart detail 4

如果我在其最大自然宽度之后盘旋,它就是这样做的 .

Is there any way to solve the hovering?

There is also a problem when there are multiple lines that have same quantity on a day, when I hover on that point, it only shows the data of 1 line, not all. I expect something like this:

Chart detail 5