如何在 Highcharts 中的最高 x 值和绘图的右侧间隙之间进行填充?

发布于 2024-11-25 08:27:50 字数 238 浏览 1 评论 0原文

我需要删除线条和绘图间隙之间的边距。 我需要解决的问题 我决定使用 startOnTick 和 endOnTick 属性,但在这种情况下,看不到间隙中的线点或仅看到其中的一部分。我发现了什么 - 另一个问题

当然,如果你知道怎么做,请帮忙)))

I need to delete the margins between my lines and plot gap. the problem that I need to resolve
I decided to use the startOnTick and endOnTick property but in this case line's points in the gap are not seen or seen only part of them.what I found - another problem

Please, help if you know how, of course)))

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

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

发布评论

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

评论(1

梦忆晨望 2024-12-02 08:27:50

您可以在提供给构造函数的图表选项中设置 maxPaddingminPadding

或者,您可以在实例化动态值图表后使用 setExtremes(min, max)

var myChart = new Highchart.chart(options),
extremes = myChart.xAxis[0].getExtremes(),
minPadding = 20,
maxPadding = 20;
myChart.xAxis[0].setExtremes(extremes.dataMin - minPadding, extremes.dataMax + maxPadding);

You can set maxPadding and minPadding within chart options provided to the constructor.

Or you can use setExtremes(min, max) after instantiate the chart for dynamic values.

var myChart = new Highchart.chart(options),
extremes = myChart.xAxis[0].getExtremes(),
minPadding = 20,
maxPadding = 20;
myChart.xAxis[0].setExtremes(extremes.dataMin - minPadding, extremes.dataMax + maxPadding);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文