- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在寻找一种将水平平均线添加到基于线的 Highcharts 的可能性。它应该仅计算实际可见点的平均值(根据缩放级别的变化重新绘制)以及每个系列本身的平均值。
我只找到了一个例子 calculates one average over all series .
最佳答案
以下是根据缩放级别(受 the solution of @jlbriggs 影响)计算每个系列的平均线的示例。它甚至继承了系列图中平均线的颜色。
/**
* Draws the average line for every series on chart
* @param chart
*/
function drawAverage(chart) {
// get the axis extremes to use as the x values
// for the average series
var ext = chart.xAxis[0].getExtremes();
var min = ext.min;
var max = ext.max;
// loop through visible series data and build total/count
// to calculate average from
$.each(chart.series, function (i, series) {
// id of the average line
var avgId = 'average_' + series.index;
var total = 0;
var count = 0;
// index of the corresponding yAxis for correct mapping of average line
var yAxisIndex = chart.yAxis.indexOf(series.yAxis);
// remove the average line before drawing new one
chart.yAxis[yAxisIndex].removePlotLine(avgId);
// only draw the line if series is visible
if (series.visible === true) {
// calculate average based on visible data points
$.each(series.data, function (i, point) {
if (point && point.x >= min && point.x < max) {
total += point.y;
count++;
}
});
var average = (total / count);
// console.log(series.name + ' with index ' + series.index + ' on yAxis ' + yAxisIndex + ': ' + average + ' = ' + total + '/' + count);
// add the average series
chart.yAxis[yAxisIndex].addPlotLine({
id: avgId,
color: series.color,
dashStyle: 'shortdash',
width: 1,
value: average,
label: {
text: 'Ø ' + Math.round(average * 10) / 10,
align: 'left',
x: -30,
style: {
color: series.color,
}
}
});
}
});
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<div id="container" style="width:600px;height:400px;"></div>
<script>
$(function () {
$('#container').highcharts({
chart: {
zoomType: 'x'
},
title: {
text: 'Sleep'
},
xAxis: {
crosshair: true,
type: 'datetime',
events: {
afterSetExtremes: function () {
drawAverage(this.chart);
},
},
},
yAxis: [
{
title: {
text: 'Sleep duration [h]'
},
},
{
title: {
text: 'Sleep quality [%]',
style: {
color: '#008000'
},
},
opposite: true,
},
],
tooltip: {
shared: true
},
plotOptions: {
series: {
events: {
show: function () {
drawAverage(this.chart);
},
hide: function () {
drawAverage(this.chart);
},
},
},
},
series: [
{
name: 'Sleep duration',
data: [
[1473372000000,7.74],
[1473458400000,9.22],
[1473544800000,8.09],
[1473631200000,8.49],
[1473717600000,8.02],
[1473804000000,7.99],
[1473890400000,7.71],
[1473976800000,7.95],
[1474063200000,8.81],
[1474149600000,9.26],
[1474236000000,7.69],
[1474322400000,7.37],
[1474408800000,8.37],
[1474495200000,8.13],
[1474581600000,8.18],
[1474668000000,7.55],
[1474754400000,7.79],
[1474840800000,8.29],
[1474927200000,7.82],
[1475013600000,8.24],
[1475100000000,7.68],
[1475186400000,7.9],
[1475272800000,8.26],
[1475359200000,7.62],
[1475445600000,8.69],
[1475532000000,8.47],
[1475618400000,8.43],
[1475704800000,7.63],
[1475791200000,8.28],
[1475877600000,7.75]
],
color: '#696969',
tooltip: {
valueSuffix: ' h'
},
},
{
name: 'Sleep quality',
data: [
[1473372000000,95],
[1473458400000,100],
[1473544800000,86],
[1473631200000,94],
[1473717600000,100],
[1473804000000,89],
[1473890400000,85],
[1473976800000,96],
[1474063200000,100],
[1474149600000,100],
[1474236000000,95],
[1474322400000,90],
[1474408800000,93],
[1474495200000,88],
[1474581600000,93],
[1474668000000,82],
[1474754400000,90],
[1474840800000,87],
[1474927200000,87],
[1475013600000,94],
[1475100000000,90],
[1475186400000,84],
[1475272800000,97],
[1475359200000,79],
[1475445600000,100],
[1475532000000,94],
[1475618400000,92],
[1475704800000,92],
[1475791200000,100],
[1475877600000,88]
],
color: '#008000',
yAxis: 1,
tooltip: {
valueSuffix: ' %'
},
},
],
});
// draw average line on first load
chart = $('#container').highcharts();
drawAverage(chart);
});
</script>
我已经用 plotLines
制作了这条线,但您可以轻松地将其更改为自己的系列:
// removing average series if there's one
var averageSeries = chart.get(avgId);
if(averageSeries != null) {
averageSeries.remove();
}
// only draw the line if series is visible
if (series.visible === true) {
// ...
// add the average series
chart.addSeries({
id: avgId,
name: 'Average ' + series.name,
showInLegend: true,
type: 'line',
lineWidth: 1,
lineColor: series.color,
color: series.color,
dashStyle: 'shortdash',
zIndex: 5 + series.index,
data: [
[min, average],
[max, average]
]
});
}
关于javascript - 通过图表上每个系列的缩放级别动态地将平均值添加到 Highcharts ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39953226/
如何将导出模块包含到 angular2 应用程序中? 我尝试将以下脚本添加到 index.html 但没有任何反应。 最佳答案 从 Angular CLI 1.0-RC.1 和最新的 angular
我正在为 Web 应用程序使用 HighCharts Javascript 库。当我下载 Highchart 时,我需要 Highchart 水印图像。 我正在使用普通的 hicgchart 代码。
我是 highcharts 的新手。默认情况下,Highchart 在图表本身内显示工具提示。这是否可以在图表外部显示工具提示,并显示在与内部显示相同的位置。有帮助吗? 最佳答案 您可以定义自己的 d
我正在尝试使用日期时间格式的数据创建 highcharts 热图。数据以小时为单位,持续数天。我不希望图表每天都环绕,但希望所有数据都在一条线上。 具体来说,它用于显示每小时的云量百分比,因此每个热图
我正在用 angular 中的简单图形来验证 highcharts。但是导出按钮不显示。我在 html 页面中添加脚本: 并在图表中添加属性: export :true, navigat
我很想知道为什么按钮 2 在这个 example 中不起作用 在这个 jsfiddle 示例中,附加到按钮 1 的“更新”方法正在运行,但在我的原始代码中,“更新”也不起作用。它显示错误:“对象# 没
我正在尝试在 highcharts 中编辑工具提示的边框。 我遇到的问题是我只想显示底部边框。 例如,您可以执行以下操作: tooltip: {borderWidth: 10}//但问题是在整个工具提
Highcharts的十字线可以显示在面积图的顶部而不是隐藏在其下方吗? 这是问题jsfiddle.net/hHjZb/1286/的示例 最佳答案 更新: Highcharts现在已经实现了the O
在将图表导出为PNG时,我试图在饼图上添加图例。 这是我的代码: var chart_23_106; $(document).ready(function () { chart_23_106 = ne
带三角规的半圆饼 如何在图表顶部创建带有三角形仪表的上述半圆饼图。 我的车速表可以工作,但不能满足需要。 在highchart api中有没有办法使用三角形作为仪表,而不是车速表? 谢谢 最佳答案 这
我们使用的是Highchart气泡图,但是,当气泡x和y在图中位于同一位置且气泡y较小时,将无法看到或单击得很少的气泡。 有什么方法可以先绘制较大的气泡,然后在顶部绘制较小的气泡?还是说较小的始终位于
是否可以使用百分比设置 Highcharts 的宽度?每当调整页面大小时,图表应具有足够的响应速度以适合页面大小吗? One Solution 这里的问题是我有3个图表需要并排显示,每次调整页面大小时
我在更新基本列 Highcharts 时遇到问题。 我从服务器返回的 json 数组是: [{"name":"positive","data":[18,35,32,38]},{"name":"nega
有没有办法创建重叠的列? 例如在 this jsFiddle ,蓝色和红色列应如下所示相互重叠,蓝色在后面,红色在前面。 澄清一下,我不想要堆叠的列,蓝色和红色列都应该从 xAxis (y=0) 开始
如何自定义图例 从 对此 最佳答案 查看 Highcharts legend api 选项。您可以使用所需的 css 进一步自定义。使用适当的 svg 图像(背景颜色取自图表本身) legend: {
我正在尝试使用模式作为列范围以允许条形图工作。 图案出现但不使用预定义的图案,所以它只是纯蓝色。通常它使用已定义的条纹图案,并在散点图等上完美运行。 这是一个片段,展示了我的意思: Highchar
我正在使用 HighStock JS 库生成一个图表,该图表使用 xAxis 的线性序列(不是时间序列)。 我仍然想使用范围选择器来缩放到我的线性系列中的预定范围。这可能吗? 例如;说我的 xAxis
我需要从一个系列向下钻取到多个系列。但是下钻 id 在一个系列上似乎是唯一的,这意味着我无法从单个系列下钻到多个系列;只有一个。我该如何解决这个问题? 最佳答案 可以使用 chart.addSingl
我制作了一个带有分组和堆叠列的Highcharts图表,就像在这里的示例http://www.highcharts.com/demo/column-stacked-and-grouped一样。该示例显
如何在 highcharts/highstock 中将滚动条位置设置为Left? 如图表加载时的图像所示, 滚动条自动右对齐。 有没有办法将它定位到左侧? 最佳答案 我们可以通过将 min 设置为 0
我是一名优秀的程序员,十分优秀!