如题,我有一个折线图,我的数据是1月1日到6月1日每天的数据,但是我的坐标轴只显示每月1日,这个要怎么做?
坐标轴自定义,其他正常设置
function(){
var currentDate = new Date(this);
var d = currentDate.getDate();
if(d==1){
return this;}
else{
return "";
}
你单独再写一个数据集,只取每月1号的数据,用这个做图表就行了呀
比如oracel中
where 1=1
and to_char(日期字段,'dd')='01'
其它的数据库你可以自己搜索格式化的函数
mysql中
and DATE_FORMAT(日期字段,'%d')='01'