gpt4 book ai didi

javascript - HighCharts Linechart MySQL/PHP 多行数据

转载 作者:行者123 更新时间:2023-11-29 12:57:46 25 4
gpt4 key购买 nike

我有一个 Highchart 折线图,我希望显示 4 条线,其中 2 条线通过我拥有的 MySQL 数据库表是动态的,我已将其配置为与 GoogleCharts API 完美配合,但最近我看到了HighCharts,印象非常深刻。我已经将其配置为工作,但我只让它与一根线一起工作。我尝试向数组添加新线,但我似乎看不到线的绘制位置,因为我是 HighCharts 的新手。我已将其配置为使用“DPMO”列,当我从 1 更改行时至 2它显示了我的平均线,我还想将其与 dpmo 线一起显示。结合两条静态线,一条为 3,000,另一条为 5,000。

谢谢。

IRDR.php 文件

<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>OAK3 - 12 Week IRDR DPMO</title>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/setup.js"></script>
<script type="text/javascript" src="js/test.js"></script>
</head>

<body>
<script src="js/highcharts.js"></script>
<div id="sales" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
</body>

Setup.js

var chart;
$(document).ready(function() {
var cursan = {
chart: {
renderTo: 'sales',
defaultSeriesType: 'line',
marginRight: 10,
marginBottom: 20
},
title: {
text: 'IRDR 12 Week DPMO',
},
subtitle: {
text: 'http://blackmesa.amazon.com',
},
xAxis: {
categories: []
},
yAxis: {
title: {
text: 'DPMO'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
crosshairs: true,
shared: true
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'top',
x: -10,
y: 30,
borderWidth: 0
},

plotOptions: {

series: {
cursor: 'pointer',
marker: {
lineWidth: 1
}
}
},

series: [{
color: Highcharts.getOptions().colors[2],
name: 'IRDR DPMO',
marker: {
fillColor: '#FFFFFF',
lineWidth: 3,
lineColor: null // inherit from series
},
dataLabels: {
enabled: true,
rotation: 0,
color: '#666666',
align: 'top',
x: -10,
y: -10,
style: {
fontSize: '9px',
fontFamily: 'Verdana, sans-serif',
textShadow: '0 0 0px black'
}
}
}],

}


//Fetch MySql Records
jQuery.get('js/data.php', null, function(tsv) {
var lines = [];
traffic = [];
try {
// split the data return into lines and parse them
tsv = tsv.split(/\n/g);
jQuery.each(tsv, function(i, line) {
line = line.split(/\t/);
dpmo = line[0];
average = line[1];
amo=parseFloat(line[1].replace(',', ''));
if (isNaN(amo)) {
amo = null;
}
traffic.push([
dpmo,
amo,
average
]);
});
} catch (e) { }
cursan.series[0].data = traffic;
chart = new Highcharts.Chart(cursan);
});
});

Data.php(我的数据是从MySQL数据库表中提取的)

<?php

$con=mysql_connect('localhost','root','password');
mysql_select_db("test", $con);
$result=mysql_query('select substr(process_name,11,15) as process_name, a.dpmo as dpmo, a.process_id as process_id, oak3_ia.dpmo as average from (select * from oak3_irdr_chart order by process_id desc limit 12)a left join oak3_irdr_average oak3_ia on oak3_ia.process_id = a .process_id order by process_id');
while($row = mysql_fetch_array($result)) {
echo $row['process_name'] . "\t" . $row['dpmo']. "\t" . $row['average']. "\n";
}

?>

当前输出: enter image description here

预期输出: enter image description here

最佳答案

因为您应该在系列对象中设置多个系列数组,但您只有一个系列:cursan.series[0].data = Traffic;这意味着您在系列中有单个对象,这是一个系列。

关于javascript - HighCharts Linechart MySQL/PHP 多行数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23771277/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com