gpt4 book ai didi

javascript - Angular 图表上的重叠图例 Piechart

转载 作者:行者123 更新时间:2023-12-03 07:34:07 28 4
gpt4 key购买 nike

我正在使用 Angular 图表(以便在显示图表和其他内容时简化我的生活)。到目前为止,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 中。

最佳答案

供将来引用,如果有人遇到和我一样的奇怪问题,...

我已经检查并仔细检查,可以确认我确实使用的是最新版本的 Chart.jsangular-chart.js (@J.Titus 也在他的 Plunkr 中使用过)。

"chart.js": "^1.0.2"
"angular-chart.js": "~0.8.8"

然而,奇怪的是,我发现了一些非常奇怪的东西。

我正在检查您的 Plunkr 上的元素,希望能找到有关不同之处的线索。我在 @J.Titus 的 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 是您最好的 friend !)以下内容:

"<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>标签,有效解决重叠问题。

关于javascript - Angular 图表上的重叠图例 Piechart,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35690212/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com