1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
| var fillColor = ['rgba(255,255,255,0)','rgba(255,255,255,0)','rgba(255,255,255,0)']; var strokeColor = ['rgba(146,109,222,1)','rgba(87,199,212,1)','rgba(242,166,84,1)']; var bezierCurve = false; var legend = '<ul class=\"<%=name.toLowerCase()%>-legend\"><% for (var i=0; i<datasets.length; i++){%><li><%if(datasets[i].label){%> <span style=\"background-color:<%=datasets[i].pointColor%>\"></span><%=datasets[i].label%><%}%></li><%}%></ul>'; if (chartType == 'curve') { fillColor = ['rgba(146, 109, 222,0.5)','rgba(87,199,212,0.5)','rgba(242,166,84,0.5)'] bezierCurve = true; legend = '<ul class=\"<%=name.toLowerCase()%>-legend\"><% for (var i=0; i<datasets.length; i++){%><li><%if(datasets[i].label){%> <span style=\"background-color:<%=datasets[i].fillColor%>\"></span><%=datasets[i].label%><%}%></li><%}%></ul>'; }
var chartData = { labels:['1月', '2月', '3月', '4月', '5月'], datasets : [ { label: '图例1', fillColor : fillColor[0], strokeColor : strokeColor[0], pointColor : strokeColor[0], pointStrokeColor : '#fff', data : [28, 24, 40, 19, 27] }, { label: '图例2', fillColor : fillColor[1], strokeColor : strokeColor[1], pointColor : strokeColor[1], pointStrokeColor : '#fff', data : [123, 132, 146, 118, 189] }, { label: '图例3', fillColor : fillColor[2], strokeColor : strokeColor[2], pointColor : strokeColor[2], pointStrokeColor : '#fff', data : [201, 232, 256, 215, 278] } ] };
var configs = { scaleOverlay : false, scaleOverride : false, scaleSteps : null, scaleStepWidth : null, scaleStartValue : null, scaleLineColor : "rgba(0,0,0,.5)", scaleLineWidth : 1, showTooltips: false, scaleShowLabels: true, scaleLabel : "<%=value%>", scaleFontFamily : "'Arial'", scaleFontSize : 12, scaleFontStyle : "normal", scaleFontColor : "#666", scaleShowGridLines: false, scaleGridLineColor : "rgba(0,0,0,.05)", scaleGridLineWidth : 1, scaleBeginAtZero: true, bezierCurve: bezierCurve, legendTemplate : legend, pointDot : true, pointDotRadius : 3, pointDotStrokeWidth : 1, onAnimationComplete: function () { var ctx = this.chart.ctx; ctx.font = this.scale.font; ctx.fillStyle = this.scale.textColor; ctx.textAlign = 'center'; ctx.textBaseline = 'bottom'; this.datasets.forEach(function (dataset){ dataset.points.forEach(function (point, index) { if (index==0) { ctx.fillText(point.value, point.x + 10, point.y - 5); } else if(index == dataset.points.length -1){ ctx.fillText(point.value, point.x - 10, point.y -5); } else { ctx.fillText(point.value, point.x, point.y - 5); } }); }); } };
var ctx = document.getElementById('line').getContext('2d'); var line = new Chart(ctx).Line(chartData, configs); var legend = document.getElementById('legend');
legend.innerHTML = line.generateLegend();
|