作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
http://jsfiddle.net/fwxbfu1u/2/
这是 highcharts 量图的 jsfiddle。我试图更改所有选项并自定义图表。但是想不出改变中心点的半径和颜色的方法。
如下图所示
In this example .. how do i change the color and radius of the centre black dot.?
最佳答案
您可以使用 plotOptions,请参阅下面的链接
plotOptions: {
gauge: {
pivot: {
radius: 10,
borderWidth: 1,
borderColor: 'gray',
backgroundColor: {
linearGradient: { x1: 0, y1: 0, x2: 1, y2: 1 },
stops: [
[0, 'white'],
[1, 'gray']
]
}
}
}
},
关于javascript - Highcharts - Guage - 改变中心黑点(圆)的颜色和半径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28274507/
我是一名优秀的程序员,十分优秀!