我的数据库中有以下提及的日期,
['2017-09-18','2017-09-19','2017-09-22','2017-09-23','2017-09-24','2017-09-26 “]
需要将其添加到 jqchart
中 axes: [
{
type: 'dateTime',
location: 'bottom',
labels: {stringFormat: 'dd-mm-yyyy'},
minimum: new Date(<?php echo str_replace("-",",",substr(min($dtarray),0,-8)); ?>),
maximum: new Date(<?php echo str_replace("-",",",substr(max($dtarray),0,-8)); ?>),
title: { text: 'Days in month' }
},
我的代码是这样的,但我需要添加日期而不是min&amp;最大值, 因为检查时遗漏了一些日期。
这里有两个X轴即将到来我只需要一个有日期。 请帮忙
答案 0 :(得分:0)
我们可以添加系列日期,
<?php
$dat1="";
$dat2="";
$obj->AssetStatbyTeam($frmdt,$todt,$empcode);
$res = $obj->execute();
while($row1=mysql_fetch_array($res))
{
if($i==1)
{
$dat1=$dat1.sec_to_time($row1['wrk_time']);
$dat2=$dat2.sec_to_time($row1['idle_time']);
}
else
{
$dat1=$dat1.",".sec_to_time($row1['wrk_time']);
$dat2=$dat2.",".sec_to_time($row1['idle_time']);
}
$i++;
}
?>
&#13;
private GoogleMap mMap;
ArrayList<LatLngBean> arrayList;
private ArrayList<LatLng> listLatLng;
&#13;