堆叠条形流图中的白色间隙



我正在尝试使用jQuery图表插件Flot制作堆叠条形图。

两个系列的数据以json格式传入:[{"label":" unclassified ","data":[[1309374000000,"3448876"],[1309377600000,"3352757"]…

似乎这和这里发生的事情是一样的问题,但没有回应被发布。http://groups.google.com/group/flot-graphs/browse_thread/thread/c6445ff7dce59ea0/e996979c40bc3f6b?show_docid=e996979c40bc3f6b

有人看到这个错误或知道我应该在哪里看?

任何超过最基本的堆栈示例都有严重的问题。

我试过反转这个序列,但没有任何运气。所有数据按日期排序,各系列之间的日期对应。

http://rpbailey.net/flotError.PNG

edit: my flot options…正在创建两个图表,看看第二个(底部)。

                //get the date format
                strTimeFormat = "%y/%m/%d";
                if(strOb == 'Hour'){ strTimeFormat = "%y/%m/%d %H"; arrMinTick = [1, 'hour']; intBar = 1000000}
                if(strOb == 'Day'){ strTimeFormat = "%y/%m/%d"; arrMinTick = [1, 'day']; intBar =100000000}
                if(strOb == 'Month' | strOb == 'Quarter'){ strTimeFormat = "%y/%m"; arrMinTick = [1, 'month'];intBar = 3000000000}
                objOptions = {
                    colors:[ '#dddddd','#00ff00','#ffff00','#ff0000']
                    ,series:{points:{show:true},lines:{show:true},stack:0}
                    ,xaxis: { mode: "time", timeformat: strTimeFormat, minTickSize: arrMinTick }
                }           
                objOptions2 = {
                    series:{bars:{show:true, barWidth: intBar}, stack:-1000000}
                    ,xaxis: { mode: "time", timeformat: strTimeFormat }
                }   
                if(mode == 'percentage'){
                    objYaxes = {    yaxis:{
                         alignTicksWithAxis: 1
                        ,position: 'right'
                        ,tickFormatter: function(label, series){ return label +"%"; }
                    }};
                    //add on th yaxes options.
                    objOptions = jQuery.extend(objOptions, objYaxes);
                    objOptions2 = jQuery.extend(objOptions2, objYaxes);
                    console.log(objOptions);
                }
                 //top chart    
                jQuery.getJSON('includes/webRepFunctions.php', {chart:'risk',start:strStart,stop:strStop,ob:strOb,metric:mode}, function(data) {
                        jQuery.plot(jQuery("#flot1"),data,objOptions);                      
                    });
                 //bottom chart 
                jQuery.getJSON('includes/webRepFunctions.php', {chart:'cat',start:strStart,stop:strStop,ob:strOb,metric:mode}, function(data) {
                        jQuery.plot(jQuery("#flot2"),data,objOptions2);                     
                    });
                }

编辑2:一些更多的样本数据…

[{"label":"Uncategorized","data":[[1309374000000,"3448876"],[1309377600000,"3352757"],[1309381200000,"2897092"],[1309384800000,"2747047"],[1309388400000,"2693610"],[1309392000000,"2511211"],......[1310097600000,"1404290"]],"yaxis":1},{"label":"Categorized","data":[[1309374000000,"1371941"],[1309377600000,"1273494"],[1309381200000,"1505119"],[1309384800000,"1463382"],[1309388400000,"1316429"],[1309392000000,"1201810"],......[1310097600000,"611780"]],"yaxis":1}]

你的两个系列有相同数量的数据点吗?我看不出来,因为你漏掉了一些数据。这似乎是一个很麻烦的问题,但是如果你在每个序列中没有相同数量的[x,y]对,那么这些图的行为就会很奇怪。如果没有定义,则使用null代替[x,y]。我在想什么可能是问题,而不是一个非常坏的插件,因为我已经绘制了类似的东西之前,并有一些问题,但我没有访问该代码了。

尝试删除objOptions2 = jQuery.extend(objOptions2, objYaxes);从你的代码。同样,这个插件不是最好的,并且在Flot的一些属性方面存在问题。

还可以尝试从objOptions2中删除barWidth: intBar

试着把它们分开。

除此之外,试着把有问题的图表单独放在一个页面上,除了相关的内容外,不使用其他HTML/CSS/Javascript。

我也有同样的问题,但同时参考了jquery.flot.stack.js和jquery.flot.stack.min.js

一旦我删除了min js ref的空白空白问题就消失了…

相关内容

  • 没有找到相关文章

最新更新