Google Chart API:是否可能有不完整的图表?

发布于 2024-12-01 16:21:40 字数 578 浏览 1 评论 0原文

我需要制作一个图表,显示本周的每周活动,并将一周中的每一天作为 X 轴上的一个点。示例:

在此处输入图像描述

这工作正常,但我遇到的问题是,如果今天是星期三,则星期四至星期六没有数据。目前,图表通过将线条发送回 0 来描述这一点。有没有办法让 Google Charts 停止在特定点绘制线条并将其他数据点留空?

我尝试忽略数据集中缺失的值,但这只会导致它在整个图表中延伸周日至周三。

I need to make a chart showing weekly activity for the current week, with each day of the week as a point on the X axis. Example:

enter image description here

This works fine, but the problem I'm having is that, if today were wednesday, there's no data for Thursday-Saturday. Currently the chart depicts this by sending the line back to 0. Is there any way to make Google Charts stop drawing the line at a specific point and leave the other data points empty?

I tried omitting the missing values from the dataset, but that just causes it to stretch Sunday-Wednesday across the entire graph.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕梦 2024-12-08 16:21:40

您必须传递值 null,这是 Javascript 表示 nil 的方式。确保不包含引号。

例如:

["Sat", null, 165, 210]

You have to pass the value null, which is Javascript's way of saying nil. Make sure you don't include quotation marks.

For instance:

["Sat", null, 165, 210]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文