0

我正在使用角度图表(为了在显示图表和其他东西时简化我的生活)。到目前为止,它非常简单,我能够完美地渲染我的饼图。

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 中。

4

1 回答 1

1

以备将来参考,以防有人遇到和我一样的奇怪问题,...

我已经检查并再次检查,可以确认我确实使用了最新版本的Chart.jsand angular-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 + Fis your best 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>标签,有效解决重叠问题。

于 2016-02-29T03:05:44.130 回答