gpt4 book ai didi

javascript - 使用 highcharts api 和 mysql 显示饼图

转载 作者:可可西里 更新时间:2023-11-01 08:58:05 25 4
gpt4 key购买 nike

我有一个问题。我想使用 highcharts api 显示饼图。数据来自 MySQL 数据库。我的表格就像(这是我的表格格式):

city|area|blank
A |100 |50
B |50 |20

我的PHP代码是

<?php

include "con.php";

$id = $_GET['city'];


$result = mysqli_query($con,"SELECT area AS A , blank AS B from `table` WHERE city = '".$id."' ");

$rows['type'] = 'pie';
$rows['name'] = 'area';
//$rows['innerSize'] = '50%';
while ($r = mysqli_fetch_array($result)) {
$rows['data'][] = array($r['A'], $r['B']);
}
$rslt = array();
array_push($rslt,$rows);

print json_encode($rslt, JSON_NUMERIC_CHECK);
mysqli_close($con);

我一直在显示饼图,但我的数据是这样的(这是示例):

id|category|value
1 |area |100
1 |blank |20
2 |area |50
2 |blank |20

但是正如我之前提到的关于我的表结构的那样,饼图没有与它一起显示。

我的js代码:

var c = $('#City :selected').text(); 

getAjaxData(c);

var opt = {
chart: {
renderTo: 'container1',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'final chart'
},

plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>' + this.point.name + '</b>: ' + this.y;
}
},
showInLegend: true
}
},
series: []
};
function getAjaxData(c) {
$.getJSON("file.php", {city:c},function(json) {
opt.series = json;
chart = new Highcharts.Chart(opt);

});



}

最佳答案

因此,您的数据采用可怕的“实体-属性-值”格式,即... complicated .

这意味着不用像这样编写一个漂亮的查询

select area, blank from cities where id=1

您现在必须在所有查询中将数据从行转换为列

select c1.value as area,
c2.value as blank
from cities c1
inner join cities c2 on c1.id=c2.id
where c1.category='area'
and c2.category='blank'
and c1.id=1

我建议不要使用 EAV 来存储您的数据。

关于javascript - 使用 highcharts api 和 mysql 显示饼图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55015777/

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