我正在尝试创建一个具有四条水平线(边距 - 两个上边距和两个下边距)的agular折线图。请看这个小提琴 - https://jsfiddle.net/CypressMountain/arq34fcu/30/
我的目标是在角度控制器内定义这些线的属性(值,颜色,标签),但不在JQuery折线图扩展内,因为它目前在小提琴中完成。图形属性以及边距线属性将来自后端,边距线将独立于图形绘制。
我不确定如何在控制器中实现类似$ scope.margins = []的内容,类似于我们对$ scope.data = []或$ scope.labels的内容......任何帮助都表示赞赏。
这是HTML:
<canvas id="line" class="chart chart-linebis" chart-data="data"
chart-labels="labels" chart-legend="true" chart-series="series"
chart-click="onClick">
</canvas>
当正在扩展折线图类型时,现在在绘图功能中定义了边距线
draw: function () {
Chart.types.Line.prototype.draw.apply(this, arguments);
var lines =
[
{
label: 'Upper margin 1',
value: 90,
color: 'rgba(255, 0, 0, .9)'
},
{
label: 'Upper margin 2',
value: 75,
color: 'rgba(255, 165, 0, .8)'
},
{
label: 'Lower margin 1',
value: -10,
color: 'rgba(0, 165, 255, .8)'
},
{
label: 'Lower margin 2',
value: -25,
color: 'rgba(0, 0, 255, .8)'
}
]
.............................
这是控制器:
angular.module('test', ['chart.js']);
angular.module('test').controller('TestCtrl', function ($scope) {
$scope.labels = ["January", "February", "March", "April", "May", "June", "July"];
$scope.series = ['Series A'];
$scope.data = [
[-5, 48, 40, -19, 86, 27, 90]
];
});
引用了两篇之前的帖子 angular-chart add horizontal line 和 Chart.js - draw horizontal line
答案 0 :(得分:3)
我终于解决了这个问题,希望这能帮助其他可能有类似任务的人。
$scope.options = {
limitLines: [
{
label: 'Upper margin 1',
value: 90,
color: 'rgba(255, 0, 0, .9)'
},
{
label: 'Upper margin 2',
value: 75,
color: 'rgba(255, 165, 0, .8)'
},
{
label: 'Lower margin 1',
value: -10,
color: 'rgba(0, 165, 255, .8)'
},
{
label: 'Lower margin 2',
value: -25,
color: 'rgba(0, 0, 255, .8)'
}
]
}
然后HTML中的canvas标签将添加选项:
chart-options="options"
最后,在折线图扩展代码中,在绘图函数中,'lines'将通过选项桥接到'limitLines':
draw: function () {
Chart.types.Line.prototype.draw.apply(this, arguments);
var lines = this.options.limitLines;