- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
看来选项 startOnTick
和 endOnTick
对箱线图没有影响。无论如何,是否可以使用箱线图将最外面的刻度线与图形边缘对齐?
xAxis: {
startOnTick: true,
endOnTick: true,
min: -1,
max: 6,
},
我尝试添加 minPadding/maxPadding、tickmarkPlacement: Between/on 的大多数组合,并使用 tickPositioner 手动设置刻度,但没有任何运气。我唯一的解决方法是缩小最小/最大,以便填充自行修复。我更喜欢更好的解决方案,因为这种解决方法对于动态数据来说变得非常难看。
这是fiddle demo演示问题并 another与解决方法。再说一遍,有没有办法用箱线图将最外面的刻度线与图形边缘对齐?
最佳答案
调查这一点让我发现了这些埋藏在 parts/Axis.js 中的评论.
if (!axis.single) {
// minPointOffset is the value padding to the left of
// the axis in order to make room for points with a
// pointRange, typically columns. When the
// pointPlacement option is 'between' or 'on', this
// padding does not apply.
minPointOffset = Math.max(
minPointOffset,
isString(pointPlacement) ? 0 : seriesPointRange / 2
);
// Determine the total padding needed to the length of
// the axis to make room for the pointRange. If the
// series' pointPlacement is 'on', no padding is added.
pointRangePadding = Math.max(
pointRangePadding,
pointPlacement === 'on' ? 0 : seriesPointRange
);
}
该问题是由点填充引起的,并且可能发生在任何列样式图上。如果系列上的 pointPlacement
设置为 'on'
或 ' Between'
,则填充将被忽略。
series: {
type: 'boxplot',
pointPlacement: 'on',
data: ...
}
Here是工作 fiddle 。
关于highcharts - 箱线图上忽略 xAxis startOnTick 和 endOnTick 选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20842006/
有没有办法在创建图表后更改这些内容? 我正在尝试设置 startOnTick/endOnTick 属性: function SetNewExtremes() { chart.yAxis[0].
看来选项 startOnTick 和 endOnTick 对箱线图没有影响。无论如何,是否可以使用箱线图将最外面的刻度线与图形边缘对齐? xAxis: { startOnTick: true,
似乎选项 startOnTick 和 endOnTick 对箱线图没有影响。有没有办法用箱线图将最外面的刻度线与图形边缘对齐? xAxis: { startOnTick: true, endO
我是一名优秀的程序员,十分优秀!