首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > 跨浏览器开发 >

求jqplot(饼状图,柱状图可选)范例

2012-12-17 
求jqplot(饼状图,柱状图可选)实例jqplot,如果只是做一个饼状图或是只是做一个柱状图很容易实现.问题是项目

求jqplot(饼状图,柱状图可选)实例
jqplot,如果只是做一个饼状图或是只是做一个柱状图很容易实现.问题是项目开发中往往希望在用图界面能够切换统计图的类型.可以根据用户需要切换成饼状图或是柱状图,或是线状图.
谁有实例,给我一个吧.
[最优解释]
给你一个柱状图的实例的部分代码吧,




//lineCount表示需要显示几个不同的数据,
//results 是后台返回的数据,这里是我的形式,你按照你自己数据结构来写方法
for (var i = 0; i < lineCount; i++) {
           
            //for bar
            var bar_data = [];
            for (var j = 0; j < results.length; j++) {
                //base data
                var date = new Date(results[j].Key);
                //转化成保留2位小数的值
                var temp = results[j].Value[i].key - results[0].Value[i].key;
                temp = Math.round(temp * 100) / 100.0;
               
                // for bar

                bar_data.push(temp);

                if (i == 0) {
                    bar_xaxises.push(date.add(Date.HOUR, -8).format('m/d'));
                }
            }
            
            //for bar
            bar_datas.push(bar_data);
            bar_labels.push({ label: branchnames[i] });
        }



//for bar
    bar_config = {
        seriesColors: ['#2181d8', '#a2d821', '#FCA604', '#C355EC'],
        seriesDefaults: {
            renderer: $.jqplot.BarRenderer,
            pointLabels: { show: true, location: 'n' },
            rendererOptions: { fillToZero: true }
        },
        // Custom labels for the series are specified with the "label"
        // option on the series option.  Here a series option object


        // is specified for each series.
        series: bar_labels,
        // Show the legend and put it outside the grid, but inside the
        // plot container, shrinking the grid to accomodate the legend.
        // A value of "outside" would not shrink the grid and allow
        // the legend to overflow the container.
        legend: {
            show: true
        },
        axes: {
            // Use a category axis on the x axis and use our custom ticks.
            xaxis: {
                renderer: $.jqplot.CategoryAxisRenderer,
                autoscale: true,
                ticks: bar_xaxises 
            },
            // Pad the y axis just a little so bars can get close to, but
            // not touch, the grid boundaries.  1.2 is the default padding.
            yaxis: {
                padMin: 0,
                pad: 1.05
                //tickOptions: { formatString: '%dKwh' }
            }
        }
    };

 $("#" + barChartPanel.id).html('');
 $.jqplot(barChartPanel.id, chart.bar.datas, chart.bar.config);



[其他解释]
引用:
柱状图饼状图的实例我都有啊.只是没有两种混合的.要可以选择不同类型的.


楼主你也太不能变通了吧。

最实用的办法就是 if(饼图)
{
  饼图的代码
}
else
{
 上面的代码
}
唯一你要用一个对象记住的数据就是后台穿过来的results
[其他解释]
柱状图饼状图的实例我都有啊.只是没有两种混合的.要可以选择不同类型的.
[其他解释]
一楼给一个完整的示例吧.呵呵.新手.不好意思.

热点排行