gpt4 book ai didi

charts - 在绘图上显示垂直线和水平线

转载 作者:行者123 更新时间:2023-12-02 11:43:52 26 4
gpt4 key购买 nike

我正在使用 Highcharts 创建散点图。

问题是散点图似乎默认具有背景线(即不是数据的一部分,仅用于比例)平行于 x 轴或 y 轴,但不能同时平行于两者同时。

Here's an example我曾经开始制作散点图。注意平行于 x 轴的线。

如何获得两个轴上都有背景线的散点图?

最佳答案

对于 yAxis,gridLineWidth 的默认值为 1,对于 xAxis,默认值为 0,因此仅显示水平线。您需要做的是将 x 和 y 的宽度设置为 1

yAxis: {
gridLineWidth: 1 // The default value, no need to change it
},

xAxis: {
gridLineWidth: 1 // New value
},

jsfiddle 上的示例:

enter image description here

关于charts - 在绘图上显示垂直线和水平线,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8911131/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com