jquery柱状图实例

 我来答
zhmt0126
推荐于2018-04-04 · TA获得超过188个赞
知道答主
回答量:55
采纳率:100%
帮助的人:29.8万
展开全部

jqplot默认制作曲线图,如果想做柱状图,必须引入plugin包中的插件js:

一、几个简单柱状图实例:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">

<html>

<head>

<title>demo1.html</title>

    <meta http-equiv="content-type" content="text/html; charset=UTF-8">

<!-- jquery -->

<script type="text/javascript" src="../js/jquery-1.3.js"></script>

<!-- core -->

<script type="text/javascript" src="../jqplot/jquery.jqplot.js"></script>

<link rel="stylesheet" href="../jqplot/jquery.jqplot.css" type="text/css"></link>

<!--[if IE]><script language="javascript" type="text/javascript" src="../jqplot/excanvas.js"></script><![endif]-->

<!-- plugin -->

<script type="text/javascript" src="../jqplot/plugins/jqplot.barRenderer.js"></script>

<script type="text/javascript" src="../jqplot/plugins/jqplot.categoryAxisRenderer.js"></script>

<script type="text/javascript" language="javascript">

$(function(){

     line1 = [4, 2, 9, 16];           改中吵//子统计1数据

line2 = [3, 7, 6.25, 3.125];     //子统计2数据

//--最简

plot = $.jqplot('chart', [line1], {

seriesDefaults: {

renderer: $.jqplot.BarRenderer, //使用柱状图表示

rendererOptions: {

barMargin: 35   //柱状体组之间间隔

}

}

});

//--双柱状图

plot1 = $.jqplot('chart1', [line1,line2], {

seriesDefaults: {

renderer: $.jqplot.BarRenderer, //使用柱状图表示

rendererOptions: {

barMargin: 35   //柱状体组之间间隔

}

}

});

//--添加横坐标分类

plot2 = $.jqplot('chart2', [line1,line2], {

seriesDefaults: {

renderer: $.jqplot.BarRenderer, //使用柱状图表示

rendererOptions: {

barMargin: 10   //柱状体组之间间隔

}

},

axes: {

xaxis: {

ticks:['区域1', '区域2', '区域3', '区域4'],

renderer: $.jqplot.CategoryAxisRenderer //x轴绘制方式

}

}

});

});

</script>

</head>

<body>

<span id="chart" style="培蚂margin-top:20px; margin-left:20px; width:400px; height:240px;"></span>

<span id="chart1" style="margin-top:20px; margin-left:20px; width:400px; height:240px;"></span>

<span id="chart2" style="margin-top:20px; margin-left:20px; 核侍width:400px; height:240px;"></span>

</body>

</html>

效果:

本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式