我正在使用角度图表(为了简化我在显示图表和内容时的生活)。到目前为止,it had been pretty straightforward和我能够完美地呈现我的饼图。
HTML:
<canvas id="pie" class="chart chart-pie"
chart-data="data" chart-labels="labels" chart-legend="true">
</canvas>
使用Javascript:
angular.module("app", ["chart.js"]).controller("PieCtrl", function ($scope) {
$scope.labels = ["Download Sales", "In-Store Sales", "Mail-Order Sales"];
$scope.data = [300, 500, 100];
});
然而,现在我试图包括图表的传说,我遇到了一个问题;我的传奇标签是重叠的,我不知道如何解决它(如果确实有一个解决方法?!)。非常感谢任何帮助,:))
更新:
.col-xs-12.col-sm-12.col-md-6
.panel.panel-primary(ng-controller='pieChartController')
.panel-heading
h2.panel-title Title
.panel-body
canvas#pie.chart.chart-pie(chart-data='data', chart-labels='labels', chart-legend='true', chart-options='options')
更新
在查看我的饼图的图例后,我发现它符合以下CSS规则:
.chart-legend,
.bar-legend,
.line-legend,
.pie-legend,
.radar-legend,
.polararea-legend,
.doughnut-legend {
list-style-type: none;
margin-top: 5px;
text-align: center;
/* NOTE: Browsers automatically add 40px of padding-left to all lists, so we should offset that, otherwise the legend is off-center */
-webkit-padding-start: 0;
/* Webkit */
-moz-padding-start: 0;
/* Mozilla */
padding-left: 0;
/* IE (handles all cases, really, but we should also include the vendor-specific properties just to be safe) */
}
在angular-chart.css。
ul,
ol {
margin-top: 0;
margin-bottom: 10px;
}
在bootstrap.css中。
.chart-legend li,
.bar-legend li,
.line-legend li,
.pie-legend li,
.radar-legend li,
.polararea-legend li,
.doughnut-legend li {
display: inline-block;
white-space: nowrap;
position: relative;
margin-bottom: 4px;
border-radius: 5px;
padding: 2px 8px 2px 28px;
font-size: smaller;
cursor: default;
}
在angular-chart.js。
答案 0 :(得分:0)
以备日后参考,如果有人遇到与我相同的奇怪问题,......
我已经检查并仔细检查,并且可以确认我确实使用的是最新版本的Chart.js
和angular-chart.js
(@ J.Titus也在他的Plunkr中使用)。
"chart.js": "^1.0.2"
"angular-chart.js": "~0.8.8"
然而,奇怪的是,我发现了一些非常奇怪的东西。
我正在检查你的Plunkr上的元素,希望能找到一个与众不同的线索。我在@ J.Titus&#39;上找到了这个。 Plunkr:
<span style="background-color:rgba(151,187,205,1)"></span> Download sales
在我看来,它是:
<span style="background-color:rgba(151,187,205,1)">Download sales</span>
为了解决这个问题,我深入研究了Chart.js
并将所有legendTemplate
(ctrl + F
是您最好的朋友!)更改为以下内容:
"<ul class=\"<%=name.toLowerCase()%>-legend\"><% for (var i=0; i<segments.length; i++){%><li><span style=\"background-color:<%=segments[i].fillColor%>\"></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>"
这会将标签文字移出<span>
标签,从而有效解决重叠问题。