Create horizontal bar chart with a goal line - Javascript Chart.js

Javascript examples for Chart.js:Bar Chart

Description

Create horizontal bar chart with a goal line

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <script type="text/javascript" src="https://code.jquery.com/jquery-2.1.3.js"></script> 
      <script type="text/javascript" src="https://rawgit.com/nnnick/Chart.js/v1.0.2/Chart.min.js"></script> 
      <script type="text/javascript">
    $(window).load(function(){/*w  w w. j a v  a 2 s.c om*/
var data = {
    labels: ["JAN", "FEB", "MAR", "APR", "MAY", "JUN", "JUL", "AUG", "SEP", "OCT", "NOV", "DEC"],
    datasets: [{
        data: [12, 3, 2, 1, 8, 8, 2, 2, 3, 5, 7, 1]
    }]
};
var ctx = document.getElementById("LineWithLine").getContext("2d");
Chart.types.Line.extend({
    name: "LineWithLine",
    initialize: function () {
        Chart.types.Line.prototype.initialize.apply(this, arguments);
    },
    draw: function () {
        Chart.types.Line.prototype.draw.apply(this, arguments);
        var point = this.datasets[0].points[this.options.lineAtIndex]
        var scale = this.scale
        this.chart.ctx.beginPath();
        this.chart.ctx.moveTo(scale.startPoint+12, point.y);
        this.chart.ctx.strokeStyle = '#ff0000';
        this.chart.ctx.lineTo(this.chart.width, point.y);
        this.chart.ctx.stroke();
        this.chart.ctx.textAlign = 'center';
        this.chart.ctx.fillText("TODAY", scale.startPoint + 35, point.y+10);
    }
});
new Chart(ctx).LineWithLine(data, {
    datasetFill : false,
    lineAtIndex: 2
});
    });

      </script> 
   </head> 
   <body> 
      <div> 
         <canvas id="LineWithLine" width="600" height="400"></canvas> 
      </div>  
   </body>
</html>

Related Tutorials