Google Charts API 平滑折线图
有谁知道如何创建具有平滑线而不是锯齿线的折线图?
我认为我的图表会通过平滑的线条更好地呈现给最终用户。
下面是一个示例网址:
Does anyone know how to create a line chart with a smooth line instead of a jagged line?
I think my chart would present much better to end users with a smooth line.
Here's an example URL:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
来自 Google Chart API 文档:
在代码中:
From Google Chart API docs:
In code:
我只是使用
免责声明:如果您有非常尖锐的角,则舍入/平滑可能会产生误导(例如,如果您的曲线快速达到 f(x) = 0,则它可能会变为负值以适应角。
I simply used
Disclaimer: if you have very sharp corners the rounding/smoothing can be misleading (for ex. if your curve goes quickly to f(x) = 0 it can become negative to fit the corner.
如果您使用折线图,则始终可以在系列选项中使用
curveType: 'function'
,这将使“系列”平滑。If you are using a line graph, you can always use
curveType: 'function'
in your series options and that will make the "series" smooth.