- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个极坐标图,它每 2 秒由一个函数填充一次新数据。
我想要实现的目标:
显示线/面系列,基于 120 个值,每 3°(在图像“Layer1”、“Column for Layer 2”和“Total”中接收 120 个值,而“Line”每 45° 只有 8 个值) 。
每当一个值超过限制(我使用“阈值:500”)时,该点必须变成“红色”(我将其设置为“负颜色”)
我的问题是:
。
我的代码:
$(document).ready(
function(datt) {
chart = new Highcharts.chart('container', {
chart: {
polar: true,
zoomType: 'xy'
},
pane: {
startAngle: 0,
endAngle: 360
},
credits: {
enabled: false
},
title: {
text: 'Polar distribution of layers thickness '
},
tooltip: {
formatter: function() {
return this.series.name + ' WT: ' + JSON.stringify(this.y / 35.5).slice(0, 6);
}
},
xAxis: {
min: 0,
max: 360,
tickInterval: 45,
gridLineColor: 'white',
gridZIndex: 5,
labels: {
formatter: function() {
return this.value + " º";
}
}
},
yAxis: {
min: 0,
endOnTick: false,
visible: false,
maxPadding: 0,
labels: {
enabled: false
},
},
plotOptions: {
arearange: {
marker: {
enabled: false
}
}
},
series: [{
type: 'arearange',
name: 'Layer 1',
data: datt,
color: '#19dde8',
fillOpacity: 0.5,
lineWidth: 0.3,
zIndex: 2
},
{
type: 'arearange',
name: 'Column for Layer 2',
data: [
[0, 419, 419],
[45, 419, 419],
[90, 419, 419],
[135, 419, 419],
[180, 419, 419],
[225, 419, 419],
[270, 419, 419],
[315, 419, 419],
[360, 419, 419]
],
min: 400,
color: '#e8d618',
fillOpacity: 0.3,
lineWidth: 0.3,
threshold: 500,
negativeColor: 'red'
},
{
type: 'arearange',
name: 'Total',
data: [
[0, 451, 451],
[45, 451, 451],
[90, 451, 451],
[135, 451, 451],
[180, 451, 451],
[225, 451, 451],
[270, 451, 451],
[315, 451, 451],
[360, 451, 451]
],
lineWidth: 0.3,
color: '#c8c5f9',
fillOpacity: 0.5,
lineWidth: 0.3,
zIndex: 7,
},
{
type: 'line',
name: 'Line',
data: [
[0, 619],
[45, 639],
[90, 649],
[135, 659],
[180, 669],
[225, 639],
[270, 629],
[315, 699],
[360, 609]
],
lineWidth: 0.3,
color: 'orange',
threshold: 650,
negativeColor: 'red',
fillOpacity: 0.5,
lineWidth: 0.3,
zIndex: 7,
}
]
});
}
);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/highcharts/6.2.0/es-modules/parts-more/Polar.js"></script>
<div id='container'></div>
最佳答案
不幸的是,负颜色属性在极坐标图中无法正常工作。正如您所看到的,Highcharts 核心开发人员写道:“作为短期解决方案,我们必须禁用极坐标图的区域和负颜色,并在文档中指定。” https://github.com/highcharts/highcharts/issues/4936 .
我可以为您建议的解决方案是使用多色系列 Highcharts 模块 http://blacklabel.github.io/multicolor_series/ 。使用与您的类似的图表检查此演示:https://jsfiddle.net/Bastss/1c8mbu9e//
load() {
let chart = this;
chart.series.forEach((series) => {
if (series.userOptions.type != 'arearange') {
series.data.forEach((point) => {
if (point.y < 650) {
console.log(point)
point.update({
color: "red",
segmentColor: "red"
})
}
})
}
})
chart.reflow();
}
}
关于javascript - Highcharts 'negativeColor' 中的极坐标图未正确显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53297258/
我有一个极坐标图,它每 2 秒由一个函数填充一次新数据。 我想要实现的目标: 显示线/面系列,基于 120 个值,每 3°(在图像“Layer1”、“Column for Layer 2”和“Tota
我正在使用 Highcharts 在移动图表中显示一些实时变化的数据(每秒添加一个点),很像 updating spline example on the highcharts website .为了
我是一名优秀的程序员,十分优秀!