Highcharts XRange 数据和标签错位
Highcharts XRange Data and Label misalignment
我正在尝试使用 Highcharts xrange chartType 实现时间轴小部件
基本结构是 YAxis 类别:代理名称,Online/Offline/Break/etc
的 X 轴时间轴数据
我发现 YAxis 标签与每个类别的实际条形图不对齐 - 我在网上找到的两个解决方案是使用 pointPadding/groupPadding,这导致条形图细到看不见。另一种方法是定义 pointWidth 20 以确保您可以看到每个条形图,但是没有对重叠条形图的保护... LAME 但通过添加 YAxis 滚动条来解决 - 但是这不能解决有时标签在条形图之间的中间等等等等
它有点难以在 jsfiddle 中复制,因为它是一个静态大小的图表,而不是在我的产品中动态调整大小,但这是我当前状态的一个很好的例子 https://jsfiddle.net/bj7y3dwv/5/#run
'yAxis': {
'categories': agents,
'min': 0,
'max': agents.length < maxY ? agents.length - 1 : maxY,
'scrollbar': {
'enabled': true,
'showFull': false,
'barBackgroundColor': '#ccc',
'barBorderRadius': 7,
'barBorderWidth': 0,
'buttonBorderWidth': 0,
'buttonArrowColor': 'transparent',
'buttonBackgroundColor': 'transparent',
'rifleColor': 'transparent',
'trackBackgroundColor': '#F3F3F3',
'trackBorderColor': 'transparent',
'height': 10,
'minWidth': 25
},
'reversed': true,
'tickmarkPlacement': 'on',
'gridLineColor': 'transparent'
},
只需设置dataLabels.overflow = 'allow'
。默认值为 "justify",它在绘图区域内对齐标签。
代码:
series: [{
data: [{
...
}],
dataLabels: {
enabled: true,
overflow: 'allow',
crop: true
}
}]
演示:
这与 plotOptions 分组 false 有关,它阻止 highcharts 在每个系列的每个类别中保留 space
我正在尝试使用 Highcharts xrange chartType 实现时间轴小部件
基本结构是 YAxis 类别:代理名称,Online/Offline/Break/etc
的 X 轴时间轴数据我发现 YAxis 标签与每个类别的实际条形图不对齐 - 我在网上找到的两个解决方案是使用 pointPadding/groupPadding,这导致条形图细到看不见。另一种方法是定义 pointWidth 20 以确保您可以看到每个条形图,但是没有对重叠条形图的保护... LAME 但通过添加 YAxis 滚动条来解决 - 但是这不能解决有时标签在条形图之间的中间等等等等
它有点难以在 jsfiddle 中复制,因为它是一个静态大小的图表,而不是在我的产品中动态调整大小,但这是我当前状态的一个很好的例子 https://jsfiddle.net/bj7y3dwv/5/#run
'yAxis': {
'categories': agents,
'min': 0,
'max': agents.length < maxY ? agents.length - 1 : maxY,
'scrollbar': {
'enabled': true,
'showFull': false,
'barBackgroundColor': '#ccc',
'barBorderRadius': 7,
'barBorderWidth': 0,
'buttonBorderWidth': 0,
'buttonArrowColor': 'transparent',
'buttonBackgroundColor': 'transparent',
'rifleColor': 'transparent',
'trackBackgroundColor': '#F3F3F3',
'trackBorderColor': 'transparent',
'height': 10,
'minWidth': 25
},
'reversed': true,
'tickmarkPlacement': 'on',
'gridLineColor': 'transparent'
},
只需设置dataLabels.overflow = 'allow'
。默认值为 "justify",它在绘图区域内对齐标签。
代码:
series: [{
data: [{
...
}],
dataLabels: {
enabled: true,
overflow: 'allow',
crop: true
}
}]
演示:
这与 plotOptions 分组 false 有关,它阻止 highcharts 在每个系列的每个类别中保留 space