【发布时间】:2015-11-13 10:29:20
【问题描述】:
脚本
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.css">
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.0/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/raphael/2.1.0/raphael-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/morris.js/0.5.1/morris.min.js"></script>
HTML 和 jQuery:
<div id="myfirstchart" style="height: 250px;"></div>
<Script>
new Morris.Bar({
// ID of the element in which to draw the chart.
element: 'myfirstchart',
// Chart data records -- each entry in this array corresponds to a point on
// the chart.
data: [
{ year: '2008', value: 20 },
{ year: '2009', value: 10 },
{ year: '2010', value: 5 },
{ year: '2011', value: 5 },
{ year: '2012', value: 20 }
],
// The name of the data record attribute that contains x-values.
xkey: 'year',
// A list of names of data record attributes that contain y-values.
ykeys: ['value'],
// Labels for the ykeys -- will be displayed when you hover over the
// chart.
labels: ['Value'],
barSize: 50
});
</Script>
图表渲染良好,但图表之间有很多空间。
如何缩小条间距?
图片:
【问题讨论】:
-
您的问题类似于以下链接:barGap and barSizeRatio
-
我尝试了 barGap 属性,但它仍然不起作用?
标签: javascript jquery charts raphael morris.js